IWebProxy.GetProxy-Methode
Gibt den URI eines Proxys zurück.
Namespace: System.Net
Assembly: System (in system.dll)
Syntax
'Declaration
Function GetProxy ( _
destination As Uri _
) As Uri
'Usage
Dim instance As IWebProxy
Dim destination As Uri
Dim returnValue As Uri
returnValue = instance.GetProxy(destination)
Uri GetProxy (
Uri destination
)
Uri^ GetProxy (
Uri^ destination
)
Uri GetProxy (
Uri destination
)
function GetProxy (
destination : Uri
) : Uri
Parameter
- destination
Ein Uri, der die angeforderte Internetressource angibt.
Rückgabewert
Eine Uri-Instanz mit dem URI des Proxys, der zum Herstellen der Verbindung mit destination verwendet wird.
Hinweise
Die GetProxy-Methode gibt den URI des Proxyservers zurück, der Anforderungen an die im destination-Parameter angegebene Internetressource behandelt.
Beispiel
Im folgenden Beispiel wird mit der GetProxy-Methode der URI zurückgegeben, den der WebRequest für den Zugriff auf die Internetressource verwendet.
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("https://www.microsoft.com")))
'Determine whether the Web proxy can be bypassed for the site "https://www.microsoft.com".
console.writeline("For the Uri https://www.microsoft.com , the ")
If webProxy_Interface.IsBypassed(New Uri("https://www.microsoft.com")) Then
Console.WriteLine("webproxy is by passed")
Else
Console.WriteLine("webproxy is not bypassed")
End If
End Sub 'Main
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("https://www.microsoft.com")));
// Determine whether the Web proxy can be bypassed for the site "https://www.microsoft.com".
if(webProxy_Interface.IsBypassed(new Uri("https://www.microsoft.com")))
Console.WriteLine("Web Proxy is by passed");
else
Console.WriteLine("Web Proxy is not by passed");
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( "https://www.microsoft.com" ) ) );
// Check if the webproxy can ne bypassed for the site S"https://www.microsoft.com".
if ( webProxy_Interface->IsBypassed( gcnew Uri( "https://www.microsoft.com" ) ) )
{
Console::WriteLine( "Web Proxy is by passed" );
}
else
{
Console::WriteLine( "Web Proxy is not by passed" );
}
WebProxyInterface webProxyInterface = new WebProxyInterface(
new Uri("http://proxy.server.com"));
webProxyInterface.set_Credentials(new NetworkCredential(
"microsoft", ".Net"));
Console.WriteLine("The web proxy is : {0}", webProxyInterface.
GetProxy(new Uri("https://www.microsoft.com")));
// Check if the webproxy can ne bypassed for the site
//"https://www.microsoft.com".
if (webProxyInterface.IsBypassed(new Uri(
"https://www.microsoft.com"))) {
Console.WriteLine("Web Proxy is by passed");
}
else {
Console.WriteLine("Web Proxy is not by passed");
}
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
IWebProxy-Schnittstelle
IWebProxy-Member
System.Net-Namespace