5 references to JsonResult
Microsoft.AspNetCore.Mvc.Core.Test (2)
Infrastructure\JsonResultExecutorTestBase.cs (2)
190
var result = new
JsonResult
(new { foo = "abcd" }, serializerSettings);
299
var result = new
JsonResult
(new { foo = "abcd" }, new object());
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (2)
src\Mvc\Mvc.Core\test\Infrastructure\JsonResultExecutorTestBase.cs (2)
190
var result = new
JsonResult
(new { foo = "abcd" }, serializerSettings);
299
var result = new
JsonResult
(new { foo = "abcd" }, new object());
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Controller.cs (1)
314
return new
JsonResult
(data, serializerSettings);