AzureAppConfigurationSettings Properties
Class Properties 6 members
Provides the client configuration settings for connecting to Azure App Configuration.
Gets or sets the connection string used to connect to the App Configuration service.
public string? ConnectionString { get; set; }Remarks
If
AzureAppConfigurationSettings.ConnectionString is set, it overrides AzureAppConfigurationSettings.Endpoint and AzureAppConfigurationSettings.Credential. Gets or sets the credential used to authenticate to the Azure App Configuration.
public TokenCredential? Credential { get; set; } 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; } 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; }