<authenticationModules> 的 <clear> 項目
從應用程式清除所有驗證模組。
<configuration>
<system.net>
<authenticationModules>
<clear>
<clear/>
備註
<clear> 項目會移除應用程式中在組態檔之前,或者在組態階層中更高層級定義的所有驗證模組。
範例
以下範例會移除所有已設定的驗證模組,然後加入自訂的驗證模組。
<configuration>
<system.net>
<authenticationModules>
<clear/>
<add type="MyAuthModule.dll, MyAuthModule" />
</authenticationModules>
</system.net>
</configuration>
組態檔
這個項目可在應用程式組態檔、電腦組態檔 (Machine.config) 和發行者原則檔中使用。