WebProxy.BypassList Property
.NET Framework 4
Gets or sets an array of addresses that do not use the proxy server.
Assembly: System (in System.dll)
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 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.