Type of proxy to use to connect to the remote machine.
public enum ProxyType
Public Enum ProxyType
public enum class ProxyType
Name | Description |
---|
None | No proxy. Direct connection. |
Socks4 | Connection through Socks4 proxy. This is a legacy proxy protocol that does not support password authentication. |
Socks4A | Connection through Socks4A proxy (capable of resolving domain names). This is a legacy proxy protocol that does not support password authentication. |
Socks5 | Connection through Socks5 proxy. |
HttpConnect | Connection through HTTP proxy using the CONNECT method. |
Top