Skip to content
Docs Try Aspire

AzureAppConfigurationSettings Properties

Class Properties 6 members
Provides the client configuration settings for connecting to Azure App Configuration.
ConnectionString Section titled ConnectionString nullable string?
Gets or sets the connection string used to connect to the App Configuration service.
public string? ConnectionString { get; set; }
Credential Section titled Credential nullable TokenCredential?
Gets or sets the credential used to authenticate to the Azure App Configuration.
public TokenCredential? Credential { get; set; }
DisableHealthChecks Section titled DisableHealthChecks bool
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; }
Endpoint Section titled Endpoint nullable Uri?
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; }