ChestClient.Controllers.EchoController.Index C# (CSharp) Méthode

Index() public méthode

public Index ( string inStr ) : System.Web.Mvc.ActionResult
inStr string
Résultat System.Web.Mvc.ActionResult
        public ActionResult Index(string inStr)
        {
            return Json(inStr, JsonRequestBehavior.AllowGet);
        }
EchoController