我想在自定义FormsAuthentication场景中利用IIdentity.AuthenticationType
属性来设置自己的值。使用开箱即用的FormsAuthentication,将与AuthenticationType
关联的IIdentity
的HttpContext
设置为“表单”。
任何人都可以验证在核心Asp.Net或Asp.Net MVC框架中是否存在依赖于HttpContext.Current.User.Identity.AuthenticationType == "Forms"
的功能的逻辑?
最佳答案
使用Reflector,我分析了IIdentity.AuthenticationType
和FormsIdentity.AuthenticationType
的所有“Used By”依赖性,并且没有一个核心框架具有任何以AuthenticationType
值为条件的逻辑。
关于asp.net - 是否有任何框架依赖IIdentity.AuthenticationType?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6240420/