共用方式為


webRequestModules 的 <clear> 元素 (網路設定)

從應用程式中移除所有已註冊的 Web 要求模組。

<configuration>
  <system.net>
    <webRequestModules>
      <clear>

Syntax

<clear/>  

屬性和項目

下列章節說明屬性、子元素和父元素。

屬性

無。

子元素

無。

父項目

Element 說明
webRequestModules 指定要用於向網路主機要求資訊的模組。

備註

clear 元素會移除先前在組態檔或組態階層較高層級定義的已驗證的 Web 要求模組。

組態檔

此項目可以用於應用程式組態檔或電腦組態檔 (Machine.config)。

範例

下列範例會清除所有 Web 要求模組,然後註冊 HTTP 的 Web 要求模組。

<configuration>  
  <system.net>  
    <webRequestModules>  
      <clear/>  
      <add prefix="http"  
           type="System.Net.HttpRequestCreator, System, Version=2.0.3600.0,  
           Culture=neutral, PublicKeyToken=b77a5c561934e089"  
      />  
    </webRequestModules>  
  </system.net>  
</configuration>  

另請參閱