Skip to main content

SpreadsheetSettings.DownloadRouteValues Property

OBSOLETE

This property is not used any longer.

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.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

[Obsolete("This property is not used any longer.")]
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 the FileManager embedded into some built-in dialogs, 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