| Variables: |
|---|
public System.Net.ICredentials Credentials |
| Constructors: |
|---|
| Functions: |
|---|
public System.Uri GetProxy(System.Uri destination) Returns the Uniform Resource Identifier (URI) of a proxy server. Parameter destination: A System.Uri specifying the requested Internet resource. Returns: A System.Uri instance containing the URI of the proxy used to contact destination. The System.Net.IWebProxy.GetProxy(System.Uri) method returns the URI of the proxy server that handles requests to the Internet resource specified in the destination parameter. Use this method to get the URI of the proxy server used to access the specified resource. |
public System.Boolean IsBypassed(System.Uri host) Returns a System.Boolean value that indicates whether the proxy server is not used to access a specified server. Parameter host: The System.Uri of the server to check for proxy use. Returns: true if the proxy server is not used to access the server specified in host; otherwise, false. The value returned by the System.Net.IWebProxy.IsBypassed(System.Uri) method indicates whether requests that access the server specified in the host parameter bypass the proxy server. If System.Net.IWebProxy.IsBypassed(System.Uri) is true , requests and responses between the client and host are not required to go through the proxy server. |