Specifies the proxy server types supported by the HttpClient class.
The HttpClient class uses the HttpProxyType enumeration to specify the type of proxy server the client is connecting to.
| Member Name | Description |
|---|---|
| proxyNone | A direct connection will be established with the remote host. When this value is specified the proxy-related properties are ignored. |
| proxyStandard | A standard connection is established through the specified proxy server, and all resource requests will be specified using a complete URL. This proxy type should be used with standard connections. |
| proxySecure | A secure connection is established through the specified proxy server. This proxy type should only be used with secure connections and the Secure property should also be set to a value of true. |
| proxyWindows | The configuration options for the current system should be used. These settings are defined through the Internet Options in the control panel and are the same proxy server settings used by Internet Explorer. |
| proxyDefault | The default proxy type. This value is the same as the proxyWindows proxy type. |
Namespace: SocketTools
Assembly: SocketTools.HttpClient (in SocketTools.HttpClient.dll)