5 references to JsonResult
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);