当前位置:  开发笔记 > 编程语言 > 正文

检测Web.Config身份验证模式

如何解决《检测Web.Config身份验证模式》经验,为你挑选了2个好方法。

说我有以下web.config:



    
        
    

使用ASP.NET C#,如何检测Authentication标签的Mode值?



1> Paul van Bre..:

身份验证部分的mode属性:AuthenticationSection.Mode属性(System.Web.Configuration).你甚至可以修改它.

// Get the current Mode property.
AuthenticationMode currentMode = 
    authenticationSection.Mode;

// Set the Mode property to Windows.
authenticationSection.Mode = 
    AuthenticationMode.Windows;

本文介绍如何获取AuthenticationSection的引用.



2> bkaid..:

导入System.Web.Configuration命名空间并执行以下操作:

var configuration = WebConfigurationManager.OpenWebConfiguration("/");
var authenticationSection = (AuthenticationSection)configuration.GetSection("system.web/authentication");
if (authenticationSection.Mode == AuthenticationMode.Forms)
{
  //do something
}

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有