共用方式為


<authenticationModules> 項目

指定用於驗證 Internet 要求的模組。

<configuration>
<system.net>
<authenticationModules>

<authenticationModules>
</authenticationModules>

子項目

項目 說明
<add> 加入驗證模組至應用程式。
<clear> 清除所有的驗證模組。
<remove> 從應用程式移除驗證模組。

備註

<authenticationModules> 項目指定使用伺服器執行驗證處理的驗證模組。驗證模組必須實作 IAuthenticationModule 介面。

範例

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

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

組態檔

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

請參閱

IAuthenticationModule | AuthenticationManager | 網路設定結構描述