Skip to main content
Tab

FileUploadCompleteEventArgs(String, Boolean, String, UploadedFile) Constructor

Initializes a new instance of the FileUploadCompleteEventArgs class.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public FileUploadCompleteEventArgs(
    string callBackData,
    bool isValid,
    string errorText,
    UploadedFile uploadedFile
)

Parameters

Name Type Description
callBackData String

A String value that contains the callback data.

isValid Boolean

true if the uploaded file is valid; otherwise, false.

errorText String

A String value representing the error description.

uploadedFile UploadedFile

A UploadedFile object that represents the uploaded file.

Remarks

Instances of the FileUploadCompleteEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also