AzureStorageBlobsSettings Properties
Class Properties 5 members
Provides the client configuration settings for connecting to Azure Blob Storage.
Gets or sets the connection string used to connect to the blob service.
public string? ConnectionString { get; set; }Remarks
If
AzureStorageBlobsSettings.ConnectionString is set, it overrides AzureStorageBlobsSettings.ServiceUri and AzureStorageBlobsSettings.Credential. Gets or sets the credential used to authenticate to the Blob Storage.
public TokenCredential? Credential { get; set; } Gets or sets a boolean value that indicates whether the Blob Storage health check is disabled or not.
public bool DisableHealthChecks { get; set; } Gets or sets a boolean value that indicates whether the OpenTelemetry tracing is disabled or not.
public bool DisableTracing { get; set; } A
Uri referencing the blob service. This is likely to be similar to "https://{account_name}.blob.core.windows.net". public Uri? ServiceUri { get; set; }Remarks
Must not contain shared access signature. Used along with
AzureStorageBlobsSettings.Credential to establish the connection.