GetProxy Method
.NET Framework Class Library
IWebProxy..::.GetProxy Method

Returns the URI of a proxy.

Namespace:  System.Net
Assembly:  System (in System.dll)
Visual Basic (Declaration)
Function GetProxy ( _
    destination As Uri _
) As Uri
Visual Basic (Usage)
Dim instance As IWebProxy
Dim destination As Uri
Dim returnValue As Uri

returnValue = instance.GetProxy(destination)
C#
Uri GetProxy(
    Uri destination
)
Visual C++
Uri^ GetProxy(
    Uri^ destination
)
JScript
function GetProxy(
    destination : Uri
) : Uri

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.

Visual Basic
    Public Shared Sub Main()
        Dim webProxy_Interface As New WebProxy_Interface(New Uri("http://proxy.example.com"))

        webProxy_Interface.Credentials = New NetworkCredential("microsoft", ".Net")

        Console.WriteLine("The web proxy is : {0}", webProxy_Interface.GetProxy(New Uri("http://www.microsoft.com")))

        'Determine whether the Web proxy can be bypassed for the site "http://www.microsoft.com".
    console.writeline("For the Uri http://www.microsoft.com , the ")
        If webProxy_Interface.IsBypassed(New Uri("http://www.microsoft.com")) Then
            Console.WriteLine("webproxy is by passed")
        Else
            Console.WriteLine("webproxy is not bypassed")
        End If 
    End Sub 'Main


C#
        WebProxy_Interface webProxy_Interface = new WebProxy_Interface(new Uri("http://proxy.example.com"));

        webProxy_Interface.Credentials = new NetworkCredential("microsoft", ".Net");

        Console.WriteLine("The web proxy is : {0}", webProxy_Interface.GetProxy(new Uri("http://www.microsoft.com")));

        // Determine whether the Web proxy can be bypassed for the site "http://www.microsoft.com".
        if(webProxy_Interface.IsBypassed(new Uri("http://www.microsoft.com")))
            Console.WriteLine("Web Proxy is by passed");
        else
            Console.WriteLine("Web Proxy is not by passed");


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

webProxy_Interface->Credentials = gcnew NetworkCredential( "microsoft",".Net" );

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

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

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 3.5, 2.0, 1.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
Page view tracker