# UploadedEventHandler

Namespace: **Wisej.Web**

Assembly: **Wisej.Framework** (4.0.0.0)

Represents the method that will handle the [Uploaded](https://docs.wisej.com/api/wisej.web/content/upload/..#uploaded) event of a [Upload](https://docs.wisej.com/api/wisej.web/content/upload) control.

{% tabs %}
{% tab title="C#" %}

```csharp
public delegate void UploadedEventHandler(Object sender, UploadedEventArgs e)
```

{% endtab %}

{% tab title="VB.NET" %}

```visual-basic
Public Delegate Sub UploadedEventHandler(ByVal sender As [Object], ByVal e As UploadedEventArgs)
```

{% endtab %}
{% endtabs %}

## Parameters

| Name       | Type                                                                                                 | Description                                                                                                                          |
| ---------- | ---------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| **sender** | [Object](https://docs.microsoft.com/dotnet/api/system.object)                                        | The source of the event.                                                                                                             |
| **e**      | [UploadedEventArgs](https://docs.wisej.com/api/wisej.web/content/upload/wisej.web.uploadedeventargs) | A [UploadedEventArgs](https://docs.wisej.com/api/wisej.web/content/upload/wisej.web.uploadedeventargs) that contains the event data. |

## Fired By

| Name                                                                               | Description                                                                                                 |
| ---------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
| [Upload.Uploaded](https://docs.wisej.com/api/wisej.web/content/upload/..#uploaded) | Fired when files are uploaded to the [Upload](https://docs.wisej.com/api/wisej.web/content/upload) control. |
