WebProxy::IsBypassed Method (Uri^)
Indicates whether to use the proxy server for the specified host.
Assembly: System (in System.dll)
Parameters
- host
-
Type:
System::Uri^
The Uri instance of the host to check for proxy use.
Return Value
Type: System::Booleantrue if the proxy server should not be used for host; otherwise, false.
Implements
IWebProxy::IsBypassed(Uri^)| Exception | Condition |
|---|---|
| ArgumentNullException | The host parameter is null. |
The IsBypassed method is used to determine whether to bypass the proxy server when accessing an Internet resource.
The BypassProxyOnLocal and BypassList properties control the return value of the IsBypassed method.
IsBypassed returns true under any of the following conditions:
If BypassProxyOnLocal is true and host is a local URI. Local requests are identified by the lack of a period (.) in the URI, as in "http://webserver/".
If host matches a regular expression in BypassList.
If Address is null.
All other conditions return false.
The following code example creates a WebProxy object and calls this method to check whether the bypass list is properly set.
WebProxy^ CreateProxyAndCheckBypass( bool bypassLocal ) { // Do not use the proxy server for Contoso.com URIs. array<String^>^ bypassList = {";*.Contoso.com"}; WebProxy^ proxy = gcnew WebProxy( "http://contoso", bypassLocal, bypassList ); // Test the bypass list. if ( !proxy->IsBypassed( gcnew Uri( "http://www.Contoso.com" ) ) ) { Console::WriteLine( "Bypass not working!" ); return nullptr; } else { Console::WriteLine( "Bypass is working." ); return proxy; } }
Available since 1.1