共用方式為


<webRequestModules> 的 <add> 項目

將自訂 Web 要求模組加入至應用程式。

<configuration>
<system.net>
<webRequestModules>
<add>

<add
   prefix = "protocol prefix"
   type = "Assembly, Class"
/>

必要屬性

屬性 說明
prefix 這個 Web 要求模組所處理之要求的 URI 前置詞。
type 實作這個 Web 要求模組之模組的組件和類別名稱。

備註

prefix 屬性定義了使用指定之 Web 要求模組的 URI 前置詞。Web 要求模組通常是註冊成處理特定的通訊協定 (例如 HTTP 或 FTP),但是也可以註冊成處理對特定伺服器或伺服器路徑的要求。

URI 相符的前置詞傳遞至 WebRequest.Create 方法後,就會建立 Web 要求模組。

範例

以下範例會註冊 HTTP 的自訂 Web 要求模組。

<configuration>
   <system.net>
      <webRequestModules>
         <add prefix="http" type="MyHttpModule.dll, MyHttpModule" />
      </webRequestModules>
   </system.net>
</configuration>

組態檔

這個項目可在應用程式組態檔、電腦組態檔 (Machine.config) 和發行者原則檔中使用。

請參閱

WebRequest | webRequestModules 項目 | 網路設定結構描述