RavenOverflow.Web.Controllers.HomeController.SignOut C# (CSharp) Method

SignOut() private method

private SignOut ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult SignOut()
        {
            _customFormsAuthentication.SignOut();
            return RedirectToAction("Index", "Home", new {area = ""});
        }