共用方式為


<authenticationModules> 的 <add> 項目

加入驗證模組至應用程式。

<configuration>
<system.net>
<authenticationModules>
<add>

<add
   type = "Assembly, Class"
/>

必要屬性

屬性 說明
type 實作驗證模組之模組的組件 (Assembly) 和類別名稱。

備註

<add> 項目會將驗證模組加入至已註冊之驗證模組清單的尾端。驗證模組會以其加入至清單的順序依序呼叫。

範例

以下範例會設定自訂驗證模組。

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

組態檔

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

請參閱

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