WebProxy Constructor (Uri, Boolean, String[], ICredentials)
.NET Framework 4
Namespace:
System.Net
Assembly: System (in System.dll)
public WebProxy( Uri Address, bool BypassOnLocal, string[] BypassList, ICredentials Credentials )
Parameters
- Address
- Type: System.Uri
A Uri instance that contains the address of the proxy server.
- BypassOnLocal
- Type: System.Boolean
true to bypass the proxy for local addresses; otherwise, false.
- BypassList
- Type: System.String[]
An array of regular expression strings that contains the URIs of the servers to bypass.
- Credentials
- Type: System.Net.ICredentials
An ICredentials instance to submit to the proxy server for authentication.
The WebProxy instance is initialized with the Address property set to Address, the BypassProxyOnLocal property set to BypassOnLocal, the BypassList property set to BypassList, and the Credentials property set to Credentials.
The following code example demonstrates calling this constructor.
public static WebProxy CreateProxyWithCredentials2(bool bypassLocal) { // Do not use the proxy server for Contoso.com URIs. string[] bypassList = new string[]{";*.Contoso.com"}; return new WebProxy(new Uri("http://contoso"), bypassLocal, bypassList, CredentialCache.DefaultCredentials); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.