FileDataDownloader.SetDownloader(FileDataDownloader) Method
In This Article
Specifies a file data downloader to be used by the File Attachments module to send files to the client in ASP.NET Web Forms XAF Applications.
Namespace: DevExpress.ExpressApp.FileAttachments.Web
Assembly: DevExpress.ExpressApp.FileAttachment.Web.v24.2.dll
NuGet Package: DevExpress.ExpressApp.FileAttachment.Web
#Declaration
public static void SetDownloader(
FileDataDownloader downloader
)
#Parameters
Name | Type | Description |
---|---|---|
downloader | File |
A File |
#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