WebProxy Constructor (String, Boolean, String[])
Assembly: System (in system.dll)
public WebProxy ( String Address, boolean BypassOnLocal, String[] BypassList )
public function WebProxy ( Address : String, BypassOnLocal : boolean, BypassList : String[] )
Parameters
- Address
The URI of the proxy server.
- BypassOnLocal
true to bypass the proxy for local addresses; otherwise, false.
- BypassList
An array of regular expression strings that contain the URIs of the servers to bypass.
The WebProxy instance is initialized with the Address property set to a Uri instance that contains Address, the BypassProxyOnLocal property set to BypassOnLocal, and the BypassList property set to BypassList.
The following code example demonstrates calling this constructor.
public static WebProxy CreateProxyWithHostAndBypassList(bool bypassLocal) { // Do not use the proxy server for Contoso.com URIs. string[] bypassList = new string[]{";*.Contoso.com"}; return new WebProxy("http://contoso", bypassLocal, bypassList); }
public static WebProxy CreateProxyWithHostAndBypassList(boolean bypassLocal)
{
// Do not use the proxy server for Contoso.com URIs.
String bypassList[] = new String[] { ";*.Contoso.com" };
return new WebProxy("http://contoso", bypassLocal, bypassList);
} //CreateProxyWithHostAndBypassList
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.