提问人:Jesse Hallam 提问时间:7/10/2016 更新时间:7/10/2016 访问量:2480
OWIN 配置:CookieAuthenticationDefaults.AuthenticationType 和 DefaultAuthenticationTypes.ApplicationCookie 之间的区别
OWIN Configuration: What's the difference between CookieAuthenticationDefaults.AuthenticationType and DefaultAuthenticationTypes.ApplicationCookie
问:
我正在重新访问OwinStartup类中的一些代码,并有这个定义:
app.UseCookieAuthentication(new CookieAuthenticationOptions {
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/login")
});
常数似乎来自并具有 的值。DefaultAuthenticationTypes.ApplicationCookie
Microsoft.AspNet.Identity.Core
"ApplicationCookie"
常量来自 并且其值为 。这是 autodocs 读取使用的默认值 [在 CookieAuthenticationOptions 中]...CookieAuthenticationDefaults.AuthenticationType
Microsoft.Owin.Security.Cookies
"Cookies"
这两个常量对 OWIN 管道有什么影响?
我没有在我的解决方案中的其他任何地方使用任何 AspNet.Identity.Core,那么我是否应该删除依赖项并改用 CookieAuthenticationDefaults?
答: 暂无答案
评论
CookieAuthenticationOptions.AuthenticationType
CookieAuthenticationDefaults.CookiePrefix + DefaultAuthenticationTypes.ApplicationCookie