webRequestModules 的 <remove> 元素(网络设置)
从应用程序中删除自定义 Web 请求模块。
configuration
<system.net>
<webRequestModules>
<remove>
语法
<remove
prefix="URI prefix"
/>
特性和元素
下列各节描述了特性、子元素和父元素。
特性
Attribute | 说明 |
---|---|
prefix |
此 Web 请求模块处理的请求的 URI 前缀。 |
子元素
无。
父元素
元素 | 说明 |
---|---|
webRequestModules | 指定用于从网络主机请求信息的模块。 |
注解
remove
元素将为指定的 URI 前缀删除已注册的 Web 请求模块。
prefix
特性的值应为有效 URI 的前导字符,例如,“http
”或“http://www.contoso.com
”。
配置文件
此元素可在应用程序配置文件或计算机配置文件 (Machine.config) 中使用。
示例
下面的示例将删除 HTTP 的现有 Web 请求模块,然后将新的自定义 Web 请求模块注册到 www.contoso.com
的 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>