共用方式為


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

從應用程式移除自訂 Web 要求模組。

<組態>
  <system.net>
    <webRequestModules>
      <remove>

Syntax

<remove
  prefix="URI prefix"
/>  

屬性和項目

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

屬性

Attribute 說明
prefix 此 Web 要求模組所處理要求的 URI 前置詞。

子元素

無。

父項目

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

備註

remove 元素會移除指定 URI 前置詞的已註冊 Web 要求模組。

prefix 屬性的值應該是有效 URI 的前置字元,例如 "http" 或 "http://www.contoso.com"。

組態檔

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

範例

下列範例會移除 HTTP 的現有 Web 要求模組,然後向 www.contoso.com 註冊新的自訂 Web 要求模組以進行 HTTP 要求。

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

另請參閱