ASPxFileManager.FilesUploaded Event
In This Article
Occurs on the server side after upload of all selected files has been completed.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public event FileManagerFilesUploadedEventHandler FilesUploaded
#Event Data
The FilesUploaded event's data class is FileManagerFilesUploadedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Files | Gets files related to the event. |
#Remarks
The FilesUploaded event serves as a notification that all selected files have been uploaded. You can use the FileManagerFilesUploadedEventArgs.Files event argument property to get an array of uploaded files.
To specify if a file can be uploaded and cancel the action, handle the ASPxFileManager.FileUploading event.
See Also