<clear> Element for authenticationModules (Network Settings)

Clears all authentication modules from the application.

<configuration> Element
  <system.net> Element (Network Settings)
    <authenticationModules> Element (Network Settings)
      <clear> Element for authenticationModules (Network Settings)

<clear/>

Attributes and Elements

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

Attributes

None.

Child Elements

None.

Parent Elements

Element

Description

<authenticationModules>

Specifies modules used to authenticate network requests.

Remarks

The <clear> element removes all authentication modules that were defined earlier in the configuration file or at a higher level in the configuration hierarchy.

Configuration Files

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

Example

The following code example removes all configured authentication modules.

<configuration>
  <system.net>
    <authenticationModules>
      <clear/>
    </authenticationModules>
  </system.net>
</configuration>

See Also

Reference

Network Settings Schema

IAuthenticationModule

AuthenticationManager