WebProxy.BypassList プロパティ
アセンブリ: System (system.dll 内)

Dim instance As WebProxy Dim value As String() value = instance.BypassList instance.BypassList = value
public: property array<String^>^ BypassList { array<String^>^ get (); void set (array<String^>^ value); }
/** @property */ public String[] get_BypassList () /** @property */ public void set_BypassList (String[] value)
アクセス時にプロキシ サーバーを使用しない URI を記述する正規表現の一覧を格納する配列。


WebProxy オブジェクトのプロパティ (BypassList プロパティなど) を表示するコード例を次に示します。
// The following method displays the properties of the // specified WebProxy instance. public static void DisplayProxyProperties(WebProxy proxy) { Console.WriteLine("Address: {0}", proxy.Address); 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 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からWebProxy.BypassList プロパティを検索する場合は、下記のリンクをクリックしてください。

- WebProxy.BypassList プロパティのページへのリンク