Arash.Web.Controllers.HomeController.Index C# (CSharp) Method

Index() public method

public Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            var x = User.IsInRole("Admin");
            ViewBag.Message = "Welcome to ASP.NET MVC!";

            return View();
        }
HomeController