Как вернуть результат из ihttpactionresult и createdatroute
Я хочу вернуть значение json с помощью
IHttpActionResult and CreatedAtRoute
но
The resource cannot be foundошибка occuer
Что я уже пробовал:
<pre> // GET: Test object json; public IHttpActionResult Index() { json = new { Name = "hi" }; return CreatedAtRoute("DefaultApi", new { id = 1 }, json); }
Richard MacCutchan
Какой ресурс? На каком языке это должно быть?