<bypasslist> 的 <remove> 項目
移除 Proxy 略過清單中的 IP 位址或 DNS 名稱。
<configuration>
<system.net>
<defaultProxy>
<bypasslist>
<remove>
<remove
name = "regular expression"
/>
必要屬性
屬性 | 說明 |
---|---|
name | 描述 IP 位址或 DNS 名稱的規則運算式。 |
備註
<remove> 項目會移除描述位址清單中略過在組態檔之前,或在組態階層中更高層級定義之 IP 位址或 DNS 伺服器名稱的規則運算式。
範例
以下範例會移除 contoso.com 網域先前的任何定義,然後將兩個位址加入至略過清單。第一個會略過 contoso.com 網域中所有伺服器的 Proxy;第二個會略過 IP 位址以 192.168 開頭的所有伺服器的 Proxy。
<configuration>
<system.net>
<defaultProxy>
<bypasslist>
<remove name = "[a-z]+\.contoso\.com" />
<add address="[a-z]+\.contoso\.com" />
<add address="192\.168\..*" />
</bypasslist>
</defaultProxy>
</system.net>
</configuration>
組態檔
這個項目可在應用程式組態檔、電腦組態檔 (Machine.config) 和發行者原則檔中使用。