WebProxy.BypassList Property
.NET Framework 4.5
Gets or sets an array of addresses that do not use the proxy server.
Namespace: System.Net
Assembly: System (in System.dll)
Property Value
Type: System.String[]An array that contains a list of regular expressions that describe URIs that do not use the proxy server when accessed.
The BypassList property contains an array of regular expressions that describe URIs that a WebRequest instance accesses directly instead of through the proxy server.
The following code example displays the properties of a WebProxy object, including its BypassList property.
// The following method displays the properties of the // specified WebProxy instance. public static void DisplayProxyProperties(WebProxy proxy) { Console.WriteLine("Address: {0}", proxy.Address); Console.WriteLine( "Bypass on local: {0}", proxy.BypassProxyOnLocal ); int count = proxy.BypassList.Length; if (count == 0) { Console.WriteLine("The bypass list is empty."); return; } string[] bypass = proxy.BypassList; Console.WriteLine("The bypass list contents:"); for (int i=0; i< count; i++) { Console.WriteLine(bypass[i]); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.