JsonResult 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将给定对象的格式设置为 JSON 的操作结果。
public ref class JsonResult : Microsoft::AspNetCore::Mvc::ActionResult
public ref class JsonResult : Microsoft::AspNetCore::Mvc::ActionResult, Microsoft::AspNetCore::Mvc::IActionResult, Microsoft::AspNetCore::Mvc::Infrastructure::IStatusCodeActionResult
public class JsonResult : Microsoft.AspNetCore.Mvc.ActionResult
public class JsonResult : Microsoft.AspNetCore.Mvc.ActionResult, Microsoft.AspNetCore.Mvc.IActionResult, Microsoft.AspNetCore.Mvc.Infrastructure.IStatusCodeActionResult
type JsonResult = class
inherit ActionResult
type JsonResult = class
inherit ActionResult
interface IStatusCodeActionResult
interface IActionResult
type JsonResult = class
inherit ActionResult
interface IActionResult
interface IStatusCodeActionResult
Public Class JsonResult
Inherits ActionResult
Public Class JsonResult
Inherits ActionResult
Implements IActionResult, IStatusCodeActionResult
- 继承
- 实现
构造函数
JsonResult(Object, JsonSerializerSettings) |
JsonResult使用给定 |
JsonResult(Object, Object) |
JsonResult使用给定 |
JsonResult(Object) |
JsonResult使用给定 |
属性
ContentType |
获取或设置 MediaTypeHeaderValue 表示响应的 Content-Type 标头的 。 |
SerializerSettings |
获取或设置序列化程序设置。
使用
使用 |
StatusCode |
获取或设置 HTTP 状态代码。 |
Value |
获取或设置要格式化的值。 |
方法
ExecuteResult(ActionContext) |
同步执行操作方法的结果操作。 MVC 调用此方法来处理操作方法的结果。 (继承自 ActionResult) |
ExecuteResultAsync(ActionContext) |
异步执行操作方法的结果操作。 MVC 调用此方法来处理操作方法的结果。 |