You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Adds key-value data from an Azure App Configuration store to a configuration builder using its connection string.
35
+
/// This is a simplified overload that loads all key-values with no label. For advanced scenarios such as selecting specific keys,
36
+
/// filtering by labels, configuring refresh, using feature flags, or resolving Key Vault references,
37
+
/// use the overload that accepts an <see cref="Action{AzureAppConfigurationOptions}"/> parameter with options.Connect().
35
38
/// </summary>
36
39
/// <param name="configurationBuilder">The configuration builder to add key-values to.</param>
37
40
/// <param name="connectionString">The connection string used to connect to the configuration store.</param>
@@ -49,6 +52,9 @@ public static IConfigurationBuilder AddAzureAppConfiguration(
49
52
50
53
/// <summary>
51
54
/// Adds key-value data from a primary Azure App Configuration store and one or more replica stores to a configuration builder using connection strings.
55
+
/// This is a simplified overload that loads all key-values with no label. For advanced scenarios such as selecting specific keys,
56
+
/// filtering by labels, configuring refresh, using feature flags, or resolving Key Vault references,
57
+
/// use the overload that accepts an <see cref="Action{AzureAppConfigurationOptions}"/> parameter with options.Connect().
52
58
/// </summary>
53
59
/// <param name="configurationBuilder">The configuration builder to add key-values to.</param>
54
60
/// <param name="connectionStrings">The list of connection strings used to connect to the configuration store and its replicas.</param>
@@ -66,6 +72,9 @@ public static IConfigurationBuilder AddAzureAppConfiguration(
66
72
67
73
/// <summary>
68
74
/// Adds key-value data from an Azure App Configuration store to a configuration builder using endpoint with AAD authentication.
75
+
/// This is a simplified overload that loads all key-values with no label. For advanced scenarios such as selecting specific keys,
76
+
/// filtering by labels, configuring refresh, using feature flags, or resolving Key Vault references,
77
+
/// use the overload that accepts an <see cref="Action{AzureAppConfigurationOptions}"/> parameter with options.Connect().
69
78
/// </summary>
70
79
/// <param name="configurationBuilder">The configuration builder to add key-values to.</param>
71
80
/// <param name="endpoint">The endpoint used to connect to the configuration store.</param>
@@ -85,6 +94,9 @@ public static IConfigurationBuilder AddAzureAppConfiguration(
85
94
86
95
/// <summary>
87
96
/// Adds key-value data from a primary Azure App Configuration store and one or more replica stores to a configuration builder using endpoints with AAD authentication.
97
+
/// This is a simplified overload that loads all key-values with no label. For advanced scenarios such as selecting specific keys,
98
+
/// filtering by labels, configuring refresh, using feature flags, or resolving Key Vault references,
99
+
/// use the overload that accepts an <see cref="Action{AzureAppConfigurationOptions}"/> parameter with options.Connect().
88
100
/// </summary>
89
101
/// <param name="configurationBuilder">The configuration builder to add key-values to.</param>
90
102
/// <param name="endpoints">The list of endpoints used to connect to the configuration store and its replicas.</param>
0 commit comments