Class AzureBlobContainerClientOptions
Represents a single Azure Blob Storage connection and container.
Inherited Members
Namespace: SixLabors.ImageSharp.Web.Providers.Azure
Assembly: SixLabors.ImageSharp.Web.Providers.Azure.dll
Syntax
public class AzureBlobContainerClientOptions
Properties
| Edit this page View SourceBlobContainerClientFactory
Gets or sets a factory method to create an BlobContainerClient.
Declaration
public Func<AzureBlobContainerClientOptions, IServiceProvider, BlobContainerClient>? BlobContainerClientFactory { get; set; }
Property Value
Type | Description |
---|---|
Func<AzureBlobContainerClientOptions, IServiceProvider, BlobContainerClient> |
ConnectionString
Gets or sets the Azure Blob Storage connection string. https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string.
Declaration
public string ConnectionString { get; set; }
Property Value
Type | Description |
---|---|
string |
ContainerName
Gets or sets the Azure Blob Storage container name. Must conform to Azure Blob Storage container naming guidelines. https://docs.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#container-names
Declaration
public string ContainerName { get; set; }
Property Value
Type | Description |
---|---|
string |