Skip to main content
Tab

AzureFileSystemProvider Class

Provides an implementation of the Azure File System Provider.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

public class AzureFileSystemProvider :
    CloudFileSystemProviderBase

#Remarks

The AzureFileSystemProvider class implements the file system provider functionality when a file manager accesses a file system retained in Azure Service.

<dx:ASPxFileManager ID="FileManager" runat="server" ProviderType="Azure">
    <SettingsAzure AccountName="Azure1" ContainerName="uploadcontainer" />
</dx:ASPxFileManager>

Global.asax:

void Application_Start(object sender, EventArgs e) {
    DevExpress.Web.AccountManager.RegisterAzure("Azure1", "StorageName1", "AccessKey1");
}

This class can be used as an ancestor of your custom file system provider. In this case, you can override the class’s methods to provide custom implementation. To learn more, see the Custom File System Provider topic.

#Concept

See Also