我有一个类需要从web.config检查身份验证模式。
例如:
<authentication mode="Forms" />
或
<authentication mode="Windows" />
现在,我知道可以使用以下代码轻松完成此操作:
AuthenticationSection sec = ConfigurationManager.GetSection("system.web/authentication");
if (sec.Mode == "Windows")
{ ... }
我的问题是,这个类/项目在我的Web项目中被引用,以及一个WinForms项目。 WinForms项目需要.NET 4.0 Client Profile Framework(如果可能,我们不想要完整的.NET 4 Framework)。如果我没弄错,客户端配置文件不包含System.Web.dll。
是否可以在不引用System.Web的情况下检查此值(最好不要手动解析配置文件)?
我试过了:
object authSection = ConfigurationManager.GetSection("system.web/authentication");
if (authSection.ToString() == "Windows")
{ ... }
然而,ToString()只返回字符串“System.Web.Configuration.AuthenticationSection”。
谢谢!
答案 0 :(得分:6)
我使用上面的代码来获取身份验证模式。我刚刚对您的代码进行了一些更改。请在这里找到。
AuthenticationSection authSection = (AuthenticationSection)ConfigurationManager.GetSection("system.web/authentication");
if (authSection.Mode.ToString() == "Windows")
答案 1 :(得分:0)
如果您在同一个项目中讨论Web配置,请尝试使用以下方法。
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel)
或者您可以使用ConfigurationManager成员中的其他类似方法之一。我现在无法为你测试它,但我很确定它们应该可以工作。因为基本上他们不关心它是什么样的conf文件,只要有一个,因为web.config的继承类型是一个配置,你应该能够像任何其他查询一样访问它你需要的领域。
ConfigurationManager
答案 2 :(得分:0)
您的代码中的哪个位置需要对此做出决定?如果用户在此时进行了身份验证,则可以使用IIdentity.AuthenticationType并进行相应处理。对于Forms,这将始终返回Forms,对于Windows身份,它通常是NTLM,尽管它可以是Negotiate或Kerberos。