IWebProxy.GetProxy Method
.NET Framework 4.5
Returns the URI of a proxy.
Namespace: System.Net
Assembly: System (in System.dll)
Parameters
- destination
- Type: System.Uri
A Uri that specifies the requested Internet resource.
Return Value
Type: System.UriA Uri instance that contains the URI of the proxy used to contact destination.
The following example uses the GetProxy method to return the URI that the WebRequest uses to access the Internet resource.
WebProxy_Interface webProxy_Interface = new WebProxy_Interface(new Uri("http://proxy.example.com")); webProxy_Interface.Credentials = new NetworkCredential("myusername", "mypassword"); Console.WriteLine("The web proxy is : {0}", webProxy_Interface.GetProxy(new Uri("http://www.contoso.com"))); // Determine whether the Web proxy can be bypassed for the site "http://www.contoso.com". if(webProxy_Interface.IsBypassed(new Uri("http://www.contoso.com"))) Console.WriteLine("Web Proxy is by passed"); else Console.WriteLine("Web Proxy is not by passed");
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.