connectionManagement 的 <remove> 元素 (網路設定)
將 IP 位址或 DNS 名稱從連線管理清單中移除。
<configuration>
<system.net>
<connectionManagement>
<remove>
Syntax
<remove
address="server name or IP address"
/>
屬性和項目
下列章節說明屬性、子元素和父元素。
屬性
Attribute | 說明 |
---|---|
address |
IP 位址或 DNS 名稱。 |
子元素
無。
父項目
Element | 說明 |
---|---|
connectionManagement | 指定連接至網路主機的連線數目上限。 |
備註
remove
元素會移除指定伺服器的連線管理清單項目。
address
屬性值應該是有效的 IP 位址或主機名稱。
組態檔
此項目可以用於應用程式組態檔或電腦組態檔 (Machine.config)。
範例
下列範例會移除伺服器 www.adventure-works.com
的任何連線管理清單項目,然後將應用程式設定為使用四個連線到伺服器 www.contoso.com
的連線,以及兩個與所有其他伺服器的連線。
<configuration>
<system.net>
<connectionManagement>
<remove address="http://www.adventure-works.com" />
<add address="http://www.contoso.com" maxconnection="4" />
<add address="*" maxconnection="2" />
</connectionManagement>
</system.net>
</configuration>