AzureStorageQueuesSettings Properties
Class Properties 5 members
Provides the client configuration settings for connecting to Azure Storage Queues.
Gets or sets the connection string used to connect to the queue service.
public string? ConnectionString { get; set; }Remarks
If
AzureStorageQueuesSettings.ConnectionString is set, it overrides AzureStorageQueuesSettings.ServiceUri and AzureStorageQueuesSettings.Credential. Gets or sets the credential used to authenticate to the Queues Storage.
public TokenCredential? Credential { get; set; } Gets or sets a boolean value that indicates whether the Queues 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 queue service. This is likely to be similar to "https://{account_name}.queue.core.windows.net". public Uri? ServiceUri { get; set; }Remarks
Must not contain shared access signature. Used along with
AzureStorageQueuesSettings.Credential to establish the connection.