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

AccountManager.RegisterAzure(String, String, String) Method

Registers an Azure cloud storage account.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public static void RegisterAzure(
    string name,
    string storageAccountName,
    string accessKey
)

Parameters

Name Type Description
name String

A string value that specifies the account name.

storageAccountName String

A string value that is the storage account name.

accessKey String

A string value that is the access key.

Remarks

<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");
}

Concept

Online Demo

File Manager - Azure Provider

See Also