Skip to main content
Tab

FileSavingEventHandler Delegate

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.v23.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 FileSavingEventArgs

A FileSavingEventArgs object that contains event data.

See Also