UploadErrorEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the Error event.
- C#
- VB.NET
public class UploadErrorEventArgs : EventArgs
Public Class UploadErrorEventArgs
Inherits EventArgs
Constructors
UploadErrorEventArgs(type, message, fileNames, fileSizes)
Initializes a new instance of the UploadErrorEventArgs class with the specified error message.
| Name | Type | Description |
|---|---|---|
| type | UploadErrorType | The error type, one of UploadErrorType. |
| message | String | The error message. |
| fileNames | String[] | The list of files that failed to upload. |
| fileSizes | Int64[] | The list of files sizes that failed to upload. |
Properties
ErrorType
UploadErrorType: Returns the error type.
FileNames
String[]: List of file names that failed to upload.
FileSizes
Int64[]: List of file sizes that failed to upload.
Message
String: Returns the error message.
Used By
| Name | Description |
|---|---|
| UploadErrorEventHandler | Represents the method that will handle the Error event of a Upload control. |