FileSavingEventHandler Delegate
In This Article
A method that will handle events allowing you to process an uploaded file before it is saved to the server.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public delegate void FileSavingEventHandler(
object source,
FileSavingEventArgs e
);
#Parameters
Name | Type | Description |
---|---|---|
source | Object | An object that is the event source. Identifies the control that raised the event. |
e | File |
A File |
See Also