Brandy.Security.Web.AccountController.SignOut C# (CSharp) Method

SignOut() private method

private SignOut ( SignOut command, string returnUrl ) : System.Web.Mvc.ActionResult
command SignOut
returnUrl string
return System.Web.Mvc.ActionResult
        public ActionResult SignOut(SignOut command, string returnUrl)
        {
            return Handle(command, () => GetRedirectResult(returnUrl), () => RedirectToAction("SignOut", "Account"));
        }