7 references to JsonResult
BasicWebSite (2)
Controllers\JsonResultWithNewtonsoftJsonController.cs (1)
35
return new
JsonResult
(new { Message = "hello" }, _customSerializerSettings);
Controllers\JsonResultWithSystemTextJsonController.cs (1)
32
return new
JsonResult
(new { Message = "hello" }, _customSerializerSettings);
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);