Skip to main content
Tab

AzureFileSystemProvider.ContainerName Property

Specifies a name of the container (blob storage) that contains a file system displayed in the file manager.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public string ContainerName { get; set; }

Property Value

Type Description
String

A string value that is the name of the container.

Remarks

On Azure, all files are stored and organized in containers, each of which is a flat list of blobs. Use the ContainerName property to specify a container where the file system is contained.

For container naming guidelines, see Naming and Referencing Containers, Blobs, and Metadata.

<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