BistroDriveWebApp.Controllers.HomeController.Landing C# (CSharp) Method

Landing() public method

public Landing ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Landing()
        {
            if (!Request.IsAuthenticated)
            {
                return View();
            }
            else
            {
                return RedirectToAction("Offers");
            }
        }