Skip to content
DocsTry Aspire
DocsTry

AzureDataTablesSettings Properties

ClassProperties5 members
Provides the client configuration settings for connecting to Azure Tables.
ConnectionStringSection titled ConnectionStringnullablestring?
Gets or sets the connection string used to connect to the table service account.
public string? ConnectionString { get; set; }
CredentialSection titled CredentialnullableTokenCredential?
Gets or sets the credential used to authenticate to the Azure Tables.
public TokenCredential? Credential { get; set; }
DisableHealthChecksSection titled DisableHealthChecksbool
Gets or sets a boolean value that indicates whether the 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; }
ServiceUriSection titled ServiceUrinullableUri?
A Uri referencing the table service account. This is likely to be similar to "https://{account_name}.table.core.windows.net/" or "https://{account_name}.table.cosmos.azure.com/".
public Uri? ServiceUri { get; set; }
Used along with AzureDataTablesSettings.Credential to establish the connection.