aspnet-devexpress-dot-web-dot-aspxfilemanager-27bac975.md
Occurs on the server side after upload of all selected files has been completed.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public event FileManagerFilesUploadedEventHandler FilesUploaded
Public Event FilesUploaded As FileManagerFilesUploadedEventHandler
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. |
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