Skip to main content
A newer version of this page is available. .

FileDataDownloader.SetDownloader(FileDataDownloader) Method

Specifies a file data downloader to be used by the File Attachments module to send files to the client in ASP.NET XAF Applications.

Namespace: DevExpress.ExpressApp.FileAttachments.Web

Assembly: DevExpress.ExpressApp.FileAttachment.Web.v18.2.dll

Declaration

public static void SetDownloader(
    FileDataDownloader downloader
)

Parameters

Name Type Description
downloader FileDataDownloader

A FileDataDownloader object to be used to send files to the client.

Remarks

To register your FileDataDownloader descendant, call the static SetDownloader method in the Application_Start method that is located in the Global.asax.cs (Global.asax.vb) file:

using DevExpress.ExpressApp.FileAttachments.Web;
//...
protected void Application_Start(object sender, EventArgs e) {
    FileDataDownloader.SetDownloader(new MyDownloader());
//...
}
See Also