UploadingEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the Uploading event.
- C#
- VB.NET
public class UploadingEventArgs : CancelEventArgs
Public Class UploadingEventArgs
Inherits CancelEventArgs
Constructors
UploadingEventArgs(fileNames, fileSizes)
Initializes a new instance of the UploadingEventArgs class with the specified collection of uploaded files.
| Name | Type | Description |
|---|---|---|
| fileNames | String[] | A string array containing the named of the files being uploaded. |
| fileSizes | Int64[] | An integer array containing the sizes of the files being uploaded. |
Properties
FileNames
String[]: Returns an array containing the names of the files being uploaded.
FileSizes
Int64[]: Returns an array containing the sizes in bytes of the files being uploaded.
Used By
| Name | Description |
|---|---|
| UploadingEventHandler | Represents the method that will handle the Uploading event of a Upload control. |