我正在重新审视我的OwinStartup类中的一些代码,并且有这个定义:
app.UseCookieAuthentication(new CookieAuthenticationOptions {
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/login")
});
常量DefaultAuthenticationTypes.ApplicationCookie
似乎来自Microsoft.AspNet.Identity.Core
,其值为"ApplicationCookie"
。
常量CookieAuthenticationDefaults.AuthenticationType
来自Microsoft.Owin.Security.Cookies
,其值为"Cookies"
。它的autodocs读取 [在CookieAuthenticationOptions]中使用的默认值 ...
这两个常量对OWIN管道有什么影响?
我没有在我的解决方案中的任何其他地方使用任何AspNet.Identity.Core,那么我应该删除依赖项并使用CookieAuthenticationDefaults吗?