SocketTools .NET Edition

HttpClient.HttpProxyType Enumeration

Specifies the proxy server types supported by the HttpClient class.

[Visual Basic]
Public Enum HttpClient.HttpProxyType
[C#]
public enum HttpClient.HttpProxyType

Remarks

The HttpClient class uses the HttpProxyType enumeration to specify the type of proxy server the client is connecting to.

Members

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.

Requirements

Namespace: SocketTools

Assembly: SocketTools.HttpClient (in SocketTools.HttpClient.dll)

See Also

SocketTools Namespace