AuthenticationExample.Web.Controllers.SessionController.Destroy C# (CSharp) Method

Destroy() private method

private Destroy ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
		public ActionResult Destroy()
		{
			_authenticator.SignOut();
			Session.Abandon();
			return RedirectToAction("Index", "Home");
		}
	}