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
In order to flow proxy settings down to the OAuth helper classes it is necessary to change the agent constructors to accept the proxy settings, and other HttpClient settings, rather than take a preconfigured HttpClient.
In order to flow proxy settings down to the OAuth helper classes it is necessary to change the agent constructors to accept the proxy settings, and other
HttpClient
settings, rather than take a preconfiguredHttpClient
.The new constructor signature will be
Previously the constructor signature was
This change also removes the utility methods for create a pre-configured
HttpClient
public static HttpClient CreateConfiguredHttpClient(string httpUserAgent, TimeSpan? timeout = null)
public static HttpClient CreateConfiguredHttpClient(Uri proxyUri, TimeSpan? timeout = null)
public static HttpClient CreateConfiguredHttpClient(Uri proxyUri, string httpUserAgent, TimeSpan timeout)
The text was updated successfully, but these errors were encountered: