<webRequestModules> 元素 (網路設定)
指定要用於向網路主機要求資訊的模組。
<configuration>
<system.net>
<webRequestModules>
Syntax
<webRequestModules>
</webRequestModules>
屬性和項目
下列章節說明屬性、子元素和父元素。
屬性
無。
子元素
Element | 說明 |
---|---|
新增 | 將自訂 Web 要求模組新增至應用程式。 |
清除 | 從應用程式中移除所有已註冊的 Web 要求模組。 |
remove | 從應用程式中移除自訂 Web 要求模組。 |
父項目
Element | 說明 |
---|---|
system.net | 包含會指定 .NET Framework 如何連接至網路的設定。 |
備註
webRequestModules
項目會註冊 WebRequest 類別的子系,以處理對網路主機的資訊要求。 Web 要求模組必須實作 IWebRequestCreate 介面。
.NET Framework包含以 、 https://
和 file://
開頭 http://
之 URI 的 Web 要求模組。 您只能在設定檔中註冊自訂模組來覆寫預設模組。
組態檔
此項目可以用於應用程式組態檔或電腦組態檔 (Machine.config)。
範例
下列範例會註冊預設 HTTP 模組。 您應該以所指定模組的正確值取代 Version 與 PublicKeyToken 的值。
<configuration>
<system.net>
<webRequestModules>
<add prefix="http"
type="System.Net.HttpRequestCreator, System, Version=2.0.3600.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"
/>
</webRequestModules>
</system.net>
</configuration>