strICT.InFlow.Web.Controllers.AccountController.SignOutCallback C# (CSharp) Method

SignOutCallback() public method

public SignOutCallback ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult SignOutCallback()
        {
            if (Request.IsAuthenticated)
            {
                // Redirect to home page if the user is authenticated.
                return RedirectToAction("Index", "Home");
            }

            return View();
        }
        /*