BookManagement.Web.Controllers.AccountController.Logout C# (CSharp) Method

Logout() private method

private Logout ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Logout()
        {
            FormsAuthentication.SignOut();
            return RedirectToAction("Index", "Home");
        }