We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposed API
public AzureAppConfigurationOptions ConfigureClientOptions(Action<ConfigurationClientOptions> options)
This API should allow a user to overwirte the properties of ConfigurationClientOptions we use by default.
ConfigurationClientOptions
For example, in the case of Azure/AppConfiguration#179, the customer can do
using HttpClient client = new HttpClient( new HttpClientHandler() { Proxy = new WebProxy(new Uri("http://example.com")) }); builder.AddAzureAppConfiguration(o => o.Connect(...) .ConfigureClientOptions(co => co.Transport = new HttpClientTransport(client)); )
Reference here.
cc: @drago-draganov @jimmyca15
The text was updated successfully, but these errors were encountered:
This feature has been released as a part of version 3.0.0 of the package Microsoft.Extensions.Configuration.AzureAppConfiguration.
3.0.0
Microsoft.Extensions.Configuration.AzureAppConfiguration
Sorry, something went wrong.
abhilasharora
No branches or pull requests
Proposed API
This API should allow a user to overwirte the properties of
ConfigurationClientOptions
we use by default.For example, in the case of Azure/AppConfiguration#179, the customer can do
Reference here.
cc: @drago-draganov @jimmyca15
The text was updated successfully, but these errors were encountered: