IWebProxy::GetProxy Method (Uri^)

 

Returns the URI of a proxy.

Namespace:   System.Net
Assembly:  System (in System.dll)

Uri^ GetProxy(
	Uri^ destination
)

Parameters

destination
Type: System::Uri^

A Uri that specifies the requested Internet resource.

Return Value

Type: System::Uri^

A Uri instance that contains the URI of the proxy used to contact destination.

The GetProxy method returns the URI of the proxy server that handles requests to the Internet resource that is specified in the destination parameter.

The following example uses the GetProxy method to return the URI that the WebRequest uses to access the Internet resource.

WebProxy_Interface^ webProxy_Interface = gcnew WebProxy_Interface( gcnew Uri( "http://proxy.example.com" ) );

webProxy_Interface->Credentials = gcnew NetworkCredential( "myusername", "mypassword" );

Console::WriteLine( "The web proxy is : {0}", webProxy_Interface->GetProxy( gcnew Uri( "http://www.contoso.com" ) ) );

// Check if the webproxy can ne bypassed for the site "http://www.contoso.com".
if ( webProxy_Interface->IsBypassed( gcnew Uri( "http://www.contoso.com" ) ) )
{
   Console::WriteLine( "Web Proxy is by passed" );
}
else
{
   Console::WriteLine( "Web Proxy is not by passed" );
}

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Return to top
Show: