Proxy settings to use to connect to a web site.
C#
public struct ProxyInfo {
public String ProxyUrl;
public int ProxyPort;
public bool HaveData;
}
Members
|
Members |
Description |
|---|---|
|
ProxyUrl |
URL of the proxy server to use |
|
ProxyPort |
Port to use to access the proxy server |
|
HaveData |
If HaveData is not true, all values in ProxyInfo will be ignored when connecting to the web site |
See Also