Rotativa.Demo.Controllers.HomeController.Index C# (CSharp) Méthode

Index() public méthode

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

            return View();
        }