AssessmentAnywhere.Controllers.AccountController.SignOut C# (CSharp) Method

SignOut() public method

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

            return this.RedirectToAction("Index", "Home");
        }