Badges.Controllers.AccountController.EndEmulate C# (CSharp) Method

EndEmulate() public method

Just a signout, without the hassle of signing out of CAS. Ends emulated credentials.
public EndEmulate ( ) : System.Web.Mvc.RedirectToRouteResult
return System.Web.Mvc.RedirectToRouteResult
        public RedirectToRouteResult EndEmulate()
        {
            FormsAuthentication.SignOut();

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