FileUploadCompleteEventArgs(String, String, UploadedFile) Constructor
Initializes a new instance of the FileUploadCompleteEventArgs class.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
public FileUploadCompleteEventArgs(
string callBackData,
string errorText,
UploadedFile uploadedFile
)
Parameters
Name | Type | Description |
---|---|---|
callBackData | String | A String value that contains the callback data. |
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