Difference between FormsAuthentication Microst.AspNet.Identity.Owin.SignInManager.to authenticate

前端 未结 3 1833
-上瘾入骨i
-上瘾入骨i 2021-02-04 10:02

The default Project template of ASP.NET MVC comes with a class named Microst.AspNet.Identity.Owin.SignInManager. This class is used to authenticate users

I dont understa

3条回答
  •  春和景丽
    2021-02-04 10:42

    The Idea is for OWIN to be Platform Agnostic. It's "Middleware" between your ASP.NET application and the platform that is running it. Forms Authentication is built for ASP.NET on IIS. OWIN can use other providers such as Google and Facebook.

    Have a look at this article : https://www.tektutorialshub.com/owin/introduction-to-owin/

提交回复
热议问题