7 references to JsonResult
BasicWebSite (2)
Controllers\JsonResultWithNewtonsoftJsonController.cs (1)
35return new JsonResult(new { Message = "hello" }, _customSerializerSettings);
Controllers\JsonResultWithSystemTextJsonController.cs (1)
32return new JsonResult(new { Message = "hello" }, _customSerializerSettings);
Microsoft.AspNetCore.Mvc.Core.Test (2)
Infrastructure\JsonResultExecutorTestBase.cs (2)
190var result = new JsonResult(new { foo = "abcd" }, serializerSettings); 299var result = new JsonResult(new { foo = "abcd" }, new object());
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (2)
src\Mvc\Mvc.Core\test\Infrastructure\JsonResultExecutorTestBase.cs (2)
190var result = new JsonResult(new { foo = "abcd" }, serializerSettings); 299var result = new JsonResult(new { foo = "abcd" }, new object());
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Controller.cs (1)
314return new JsonResult(data, serializerSettings);