共用方式為


<authenticationModules> 的 <remove> 項目

從應用程式移除驗證模組。

<configuration>
<system.net>
<authenticationModules>
<remove>

<remove
   name = "authentication module name"
/>

必要屬性

屬性 說明
name 要移除的驗證模組的名稱。

備註

<remove> 項目會移除在組態檔之前或組態階層中更高層級定義的驗證模組。

範例

以下範例會先設定自訂驗證模組,然後移除驗證模組。

<configuration>
   <system.net>
      <authenticationModules>
         <add type="MyAuthModule.dll, MyAuthModule" />
         <remove name = "MyAuthModule" />
      </authenticationModules>
   </system.net>
</configuration>

組態檔

這個項目可在應用程式組態檔、電腦組態檔 (Machine.config) 和發行者原則檔中使用。

請參閱

<authenticationModules> 項目 | 網路設定結構描述