# UploadedEventArgs

Namespace: **Wisej.Web**

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

Provides data for the [Uploaded](https://docs.wisej.com/api/wisej.web/content/upload/..#uploaded) event.

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

```csharp
public class UploadedEventArgs : EventArgs
```

{% endtab %}

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

```visual-basic
Public Class UploadedEventArgs
    Inherits EventArgs
```

{% endtab %}
{% endtabs %}

## Constructors

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) UploadedEventArgs(files)

Initializes a new instance of the [UploadedEventArgs](https://docs.wisej.com/api/wisej.web/content/upload/wisej.web.uploadedeventargs) class with the specified collection of uploaded files.

| Name      | Type                                                                                              | Description                                                                                                                                     |
| --------- | ------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| **files** | [HttpFileCollection](https://docs.wisej.com/api/wisej.core/general/wisej.core.httpfilecollection) | An instance of [HttpFileCollection](https://docs.wisej.com/api/wisej.core/general/wisej.core.httpfilecollection) containing the uploaded files. |

## Properties

### ![](https://1075938901-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2HvlWXJQMV7DxhGzw7Y1%2Fuploads%2Fgit-blob-2389c55cd19719a73a5ae98e1528c8dc8525cc35%2Finstance.png?alt=media) Files

[HttpFileCollection](https://docs.wisej.com/api/wisej.core/general/wisej.core.httpfilecollection): Returns the collection of uploaded files.

## Used By

| Name                                                                                                       | Description                                                                                                                                                                                              |
| ---------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [UploadedEventHandler](https://docs.wisej.com/api/wisej.web/content/upload/wisej.web.uploadedeventhandler) | 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. |
