System.Net.Http.WindowsProxyUsePolicy
This enumeration provides available options for the proxy settings used by an HttpClient when running on Windows.
namespace System.Net.Http
{
public enum WindowsProxyUsePolicy
{
DoNotUseProxy,
UseWinHttpProxy,
UseWinInetProxy,
UseCustomProxy
}
}