Class AzureBlobContainerClientOptions
- Namespace
- SixLabors.ImageSharp.Web.Azure.Providers
- Assembly
- SixLabors.ImageSharp.Web.Providers.Azure.dll
Represents a single Azure Blob Storage connection and container.
public class AzureBlobContainerClientOptions
- Inheritance
-
AzureBlobContainerClientOptions
- Inherited Members
Properties
BlobContainerClientFactory
Gets or sets a factory method to create an BlobContainerClient.
public Func<AzureBlobContainerClientOptions, IServiceProvider, BlobContainerClient>? BlobContainerClientFactory { get; set; }
Property Value
ConnectionString
Gets or sets the Azure Blob Storage connection string. https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string.
public string ConnectionString { get; set; }
Property Value
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
public string ContainerName { get; set; }