BinaryStudio.TaskManager.Web.Controllers.AccountController.LogOn C# (CSharp) Method

LogOn() public method

The log on.
public LogOn ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult LogOn()
        {
            if (User.Identity.Name != "")
            {
                return this.RedirectToAction("Index", "Landing");
            }
            return this.View(new LogOnModel());
        }

Same methods

AccountController::LogOn ( LogOnModel model, string returnUrl ) : System.Web.Mvc.ActionResult