Class ProxyConfig
Settings for configuring a proxy for the SDK to use.
public class ProxyConfig
- Inheritance
-
ProxyConfig
- Inherited Members
Properties
BypassList
Collection of one or more regular expressions denoting addresses for which the proxy will not be used.
public List<string> BypassList { get; set; }
Property Value
Remarks
For more information on bypass lists see https://msdn.microsoft.com/en-us/library/system.net.webproxy.bypasslist%28v=vs.110%29.aspx.
BypassOnLocal
If true requests to local addresses bypass the configured proxy.
public bool BypassOnLocal { get; set; }
Property Value
Host
The host name or IP address of the proxy server.
public string Host { get; set; }
Property Value
Password
The password to authenticate with the proxy server.
public string Password { get; set; }
Property Value
Port
The port number of the proxy.
public int? Port { get; set; }
Property Value
- int?
Username
The username to authenticate with the proxy server.
public string Username { get; set; }