WindowsProxyUsePolicy Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This enumeration provides available options for the proxy settings used by an HttpClient when running on Windows.
public enum class WindowsProxyUsePolicy
public enum WindowsProxyUsePolicy
type WindowsProxyUsePolicy =
Public Enum WindowsProxyUsePolicy
- Inheritance
Fields
Name | Value | Description |
---|---|---|
DoNotUseProxy | 0 | This value indicates that a proxy will not be used. |
UseWinHttpProxy | 1 | This value indicates that the current proxy configuration of the WinHTTP API on the machine is used. |
UseWinInetProxy | 2 | This value indicates that the current proxy configuration of the WinINet API on the machine is used. The proxy settings can be configured using Internet options and supports WPAD and PAC files. |
UseCustomProxy | 3 | This value indicates that a custom proxy is used by specifying an object that implements the IWebProxy interface. |