Skip to main content
Version: 3.5

UploadErrorEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the Error event.

public class UploadErrorEventArgs : EventArgs

Constructors

Instance memberUploadErrorEventArgs(type, message, fileNames, fileSizes)

Initializes a new instance of the UploadErrorEventArgs class with the specified error message.

NameTypeDescription
typeUploadErrorTypeThe error type, one of UploadErrorType.
messageStringThe error message.
fileNamesString[]The list of files that failed to upload.
fileSizesInt64[]The list of files sizes that failed to upload.

Properties

Instance memberErrorType

UploadErrorType: Returns the error type.

Instance memberFileNames

String[]: List of file names that failed to upload.

Instance memberFileSizes

Int64[]: List of file sizes that failed to upload.

Instance memberMessage

String: Returns the error message.

Used By

NameDescription
UploadErrorEventHandlerRepresents the method that will handle the Error event of a Upload control.