Skip to content
DocsTry Aspire
DocsTry

AzureAppConfigurationSettings Properties

ClassProperties6 members
Provides the client configuration settings for connecting to Azure App Configuration.
ConnectionStringSection titled ConnectionStringnullablestring?
Gets or sets the connection string used to connect to the App Configuration service.
public string? ConnectionString { get; set; }
CredentialSection titled CredentialnullableTokenCredential?
Gets or sets the credential used to authenticate to the Azure App Configuration.
public TokenCredential? Credential { get; set; }
DisableHealthChecksSection titled DisableHealthChecksbool
Gets or sets a boolean value that indicates whether the App Configuration provider 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; }
EndpointSection titled EndpointnullableUri?
A Uri to the App Configuration store on which the client operates. Appears as "Endpoint" in the Azure portal. This is likely to be similar to "https://{store_name}.azconfig.io".
public Uri? Endpoint { get; set; }
Determines the behavior of the App Configuration provider when an exception occurs while loading data from server. If false, the exception is thrown. If true, the exception is suppressed and no configuration values are populated from Azure App Configuration.
public bool Optional { get; set; }