Rotativa.Demo.Controllers.HomeController.Index C# (CSharp) Method

Index() public method

public Index ( string name ) : System.Web.Mvc.ActionResult
name string
return System.Web.Mvc.ActionResult
        public ActionResult Index(string name)
        {
            ViewBag.Message = string.Format("Hello {0} to ASP.NET MVC!", name);

            return View();
        }