BolfTracker.Web.Controllers.PlayerController.SignOut C# (CSharp) Method

SignOut() public method

public SignOut ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult SignOut()
        {
            FormsAuthentication.SignOut();

            return RedirectToAction("Login");
        }