ChestClient.Controllers.EchoController.Index C# (CSharp) 메소드

Index() 공개 메소드

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