ChestClient.Controllers.EchoController.Index C# (CSharp) Method

Index() public method

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