From f3cd02f5f6eea3167eb28b305660e0866bb50d98 Mon Sep 17 00:00:00 2001 From: AMER JUSUPOVIC Date: Fri, 2 May 2025 11:19:18 -0700 Subject: [PATCH 1/3] add comment to setclientfactory --- .../AzureAppConfigurationOptions.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs b/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs index 25180357..295b1ee9 100644 --- a/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs +++ b/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs @@ -174,6 +174,9 @@ public AzureAppConfigurationOptions() /// /// Sets the client factory used to create ConfigurationClient instances. + /// If a client factory is provided using this method, a call to Connect is + /// still required to provide an endpoint for the Azure App Configuration store + /// but will not be used to authenticate a . /// /// The client factory. /// The current instance. From 065b179ebef4397e5f228fc4acbe3f07845ae380 Mon Sep 17 00:00:00 2001 From: AMER JUSUPOVIC Date: Fri, 2 May 2025 11:22:23 -0700 Subject: [PATCH 2/3] update comment --- .../AzureAppConfigurationOptions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs b/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs index 295b1ee9..a529967c 100644 --- a/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs +++ b/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs @@ -175,8 +175,8 @@ public AzureAppConfigurationOptions() /// /// Sets the client factory used to create ConfigurationClient instances. /// If a client factory is provided using this method, a call to Connect is - /// still required to provide an endpoint for the Azure App Configuration store - /// but will not be used to authenticate a . + /// still required to identify an Azure App Configuration store but will not + /// be used to authenticate a . /// /// The client factory. /// The current instance. From 2698b99251a65189fd2c5e64ebd5a7a334bad0d4 Mon Sep 17 00:00:00 2001 From: AMER JUSUPOVIC Date: Tue, 6 May 2025 11:10:21 -0700 Subject: [PATCH 3/3] update comment --- .../AzureAppConfigurationOptions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs b/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs index a529967c..3655bf7d 100644 --- a/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs +++ b/src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs @@ -175,8 +175,8 @@ public AzureAppConfigurationOptions() /// /// Sets the client factory used to create ConfigurationClient instances. /// If a client factory is provided using this method, a call to Connect is - /// still required to identify an Azure App Configuration store but will not - /// be used to authenticate a . + /// still required to identify one or more Azure App Configuration stores but + /// will not be used to authenticate a . /// /// The client factory. /// The current instance.