<authenticationModules> 元素(网络设置)
指定用于对网络请求进行身份验证的模块。
configuration
<system.net>
<authenticationModules>
语法
<authenticationModules>
</authenticationModules>
特性和元素
下列各节描述了特性、子元素和父元素。
特性
无。
子元素
元素 | 说明 |
---|---|
add | 将身份验证模块添加到应用程序。 |
clear | 从应用程序清除所有身份验证模块。 |
remove | 从应用程序中移除身份验证模块。 |
父元素
元素 | 说明 |
---|---|
system.net | 包含指定 .NET Framework 如何连接到网络的设置。 |
备注
authenticationModule
元素用于指定使用服务器执行身份验证过程的身份验证模块。 身份验证模块必须实现 IAuthenticationModule 接口。
配置文件
此元素可在应用程序配置文件或计算机配置文件 (Machine.config) 中使用。
示例
以下示例启用身份验证模块。 你应该将 Version 和 PublicKeyToken 的值替换为指定模块的正确值。
<configuration>
<system.net>
<authenticationModules>
<add type="System.Net.DigestClient, System, Version=2.0.3600.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</authenticationModules>
</system.net>
</configuration>