How to logout user in OWIN ASP.NET MVC5

前端 未结 6 2062
不思量自难忘°
不思量自难忘° 2020-12-31 11:30

I have got a standard AccountController class of ASP.NET MVC5 project. When I try to log out user I am facing an error coz HttpContext

6条回答
  •  情歌与酒
    2020-12-31 12:34

    Assuming that you are using ApplicationCookie to store your login information.

    AuthenticationManager.SignOut(DefaultAuthenticationTypes.ApplicationCookie);
    

提交回复
热议问题