IWebProxy.IsBypassed(Uri) Metodo

Definizione

Indica che il proxy non deve essere usato per l'host specificato.

public:
 bool IsBypassed(Uri ^ host);
public bool IsBypassed(Uri host);
abstract member IsBypassed : Uri -> bool
Public Function IsBypassed (host As Uri) As Boolean

Parametri

host
Uri

Oggetto Uri dell'host per verificare l'uso del proxy.

Valori restituiti

true se il server proxy non deve essere usato per host; in caso contrario, false.

Esempio

Nell'esempio seguente viene utilizzata la IsBypassed proprietà per determinare se il server proxy deve essere utilizzato per l'host specificato.

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

webProxy_Interface.Credentials = new NetworkCredential("myusername", "mypassword");

Uri testUri = 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(testUri))
{
    Console.WriteLine("Web Proxy is by passed");
}
else
{
    Uri? webProxyServer = webProxy_Interface.GetProxy(testUri);
    // In general, we wouldn't expect the condition (`webProxyServer! == testUri`) true here, if  IsBypassed returns `false`.
    // However, technically our interface can allow that.
    if (webProxyServer is null || webProxyServer! == testUri)
    {
        Console.WriteLine("Web proxy is bypassed");
    }
    else
    {
        Console.WriteLine("Web proxy is not bypassed");
        Console.WriteLine($"The web proxy is: {webProxyServer!}");
    }
}

 Public Shared Sub Main()
     Dim webProxy_Interface As 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".
 console.writeline("For the Uri http://www.contoso.com , the ")
     If webProxy_Interface.IsBypassed(New Uri("http://www.contoso.com")) Then
         Console.WriteLine("webproxy is by passed")
     Else
         Console.WriteLine("webproxy is not bypassed")
     End If 
 End Sub

Commenti

Il IsBypassed metodo indica se usare il server proxy per accedere all'host specificato nel host parametro . Se IsBypassed restituisce true, il proxy non viene usato per contattare l'host e la richiesta viene passata direttamente al server. Il recupero false da IsBypassed non garantisce che l'URI sia proxied; è comunque necessario chiamare il GetProxy metodo per determinarlo.

Si applica a