This topic has not yet been rated - Rate this topic

<clear> Element for webRequestModules (Network Settings) 

Removes all registered Web request modules from the application.


<clear/>

The following sections describe attributes, child elements, and parent elements.

Attributes

None.

Child Elements

None.

Parent Elements

Element Description

webRequestModules

Specifies modules to use to request information from network hosts.

The clear element removes all registered Web request modules that were defined earlier in the configuration file or at a higher level in the configuration hierarchy.

This element can be used in the application configuration file or the machine configuration file (Machine.config).

The following code example clears all Web request modules and then registers a Web request module for HTTP.

<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>
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.