Skip to main content
Tab

AmazonFileSystemProvider.GetDownloadUrl(FileManagerFile[]) Method

Returns the download URL of the specified files.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public override string GetDownloadUrl(
    FileManagerFile[] files
)

Parameters

Name Type Description
files FileManagerFile[]

A list of FileManagerFile objects that are the files to download.

Returns

Type Description
String

A String value specifying the URL of the files to download.

Remarks

When an end-user asks to download a file, a download URL should be generated where the requestor is redirected. The GetDownloadUrl method returns a download URL, which includes authentication information and the path to the specified files.

If you create a custom file system provider inherited from the AmazonFileSystemProvider class, you can override the GetDownloadUrl method to get a download URL.

To learn more, see the Amazon File System Provider topic.

See Also