diff --git a/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationExtensions.cs b/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationExtensions.cs index dc022bac..8b4bf8c8 100644 --- a/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationExtensions.cs +++ b/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationExtensions.cs @@ -33,7 +33,9 @@ private static bool IsProviderDisabled() /// /// The configuration builder to add key-values to. /// The connection string used to connect to the configuration store. - /// 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 settings are populated from Azure App Configuration. + /// 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 settings are populated from Azure App Configuration. + /// will always be thrown when the caller gives an invalid input configuration (connection strings, endpoints, key/label filters...etc). + /// /// The provided configuration builder. public static IConfigurationBuilder AddAzureAppConfiguration( this IConfigurationBuilder configurationBuilder, @@ -48,7 +50,9 @@ public static IConfigurationBuilder AddAzureAppConfiguration( /// /// The configuration builder to add key-values to. /// The list of connection strings used to connect to the configuration store and its replicas. - /// 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 settings are populated from Azure App Configuration. + /// 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 settings are populated from Azure App Configuration. + /// will always be thrown when the caller gives an invalid input configuration (connection strings, endpoints, key/label filters...etc). + /// /// The provided configuration builder. public static IConfigurationBuilder AddAzureAppConfiguration( this IConfigurationBuilder configurationBuilder, @@ -63,7 +67,9 @@ public static IConfigurationBuilder AddAzureAppConfiguration( /// /// The configuration builder to add key-values to. /// A callback used to configure Azure App Configuration options. - /// 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 settings are populated from Azure App Configuration. + /// 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 settings are populated from Azure App Configuration. + /// will always be thrown when the caller gives an invalid input configuration (connection strings, endpoints, key/label filters...etc). + /// /// The provided configuration builder. public static IConfigurationBuilder AddAzureAppConfiguration( this IConfigurationBuilder configurationBuilder,