<webRequestModules> 的 <clear> 項目
清除註冊的 Web 要求模組。
<configuration>
<system.net>
<webRequestModules>
<clear>
<clear/>
備註
<clear> 項目會移除在組態檔之前,或者組態階層中更高層級定義的所有已註冊 Web 要求模組。
範例
以下範例會清除所有的 Web 要求模組,然後註冊 HTTP 的自訂 Web 要求模組。
<configuration>
<system.net>
<webRequestModules>
<clear/>
<add prefix="http" type="MyHttpModule.dll, MyHttpModule" />
</webRequestModules>
</system.net>
</configuration>
組態檔
這個項目可在應用程式組態檔、電腦組態檔 (Machine.config) 和發行者原則檔中使用。