Skip to main content
A newer version of this page is available. .
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.v19.2.dll

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