Catcher.AndroidDemo.EasyService.Controllers.UserController.PostThing C# (CSharp) 메소드

PostThing() 개인적인 메소드

private PostThing ( string str ) : System.Web.Mvc.ActionResult
str string
리턴 System.Web.Mvc.ActionResult
        public ActionResult PostThing(string str)
        {
            var json = new
            {
                Code = "00000",
                Msg = "OK",
                Val = str
            };
            return Json(json);
        }