Class AzureBlobStorageCacheOptions
Configuration options for the AzureBlobStorageCache.
Inherited Members
Namespace: SixLabors.ImageSharp.Web.Caching.Azure
Assembly: SixLabors.ImageSharp.Web.Providers.Azure.dll
Syntax
public class AzureBlobStorageCacheOptions
Properties
| Edit this page View SourceCacheFolder
Gets or sets the cache folder's name that'll store cache files under the configured container. Must conform to Azure Blob Storage directory naming guidelines. https://learn.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata#directory-names
Declaration
public string? CacheFolder { get; set; }
Property Value
Type | Description |
---|---|
string |
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 |