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

FileManagerSettings.DownloadRouteValues Property

Defines the callback routing logic by specifying the name of the Controller and the Action which should handle requests related to file downloading.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v20.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public object DownloadRouteValues { get; set; }

Property Value

Type Description
Object

An object containing the Controller and Action names.

Remarks

If file downloading is allowed for FileManager, you should provide an associated controller action that will send the binary content of the downloaded file to the response. Use the DownloadRouteValues property to reference this controller action by its name and the name of its controller.

See Also