Skip to main content
Tab

AzureFileSystemProvider.AccessKey Property

OBSOLETE

Use the AccountManager class API and the AccountName property instead.

Use the AccountManager class API and the AccountName property instead. For more information, refer to the Cloud Storage Account Management topic.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[Obsolete("Use the AccountManager class API and the AccountName property instead.")]
public string AccessKey { get; set; }

Property Value

Type Description
String

A string value that is the access key.

Remarks

Specifies the access key of an Azure account.

Specify the AzureFileSystemProvider.StorageAccountName and AccessKey properties to provide your application with access to an Azure account.

<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

See Also