ObjectResult 类

定义

执行 ActionResult 时将使用主机提供的机制将对象写入响应的 。

public ref class ObjectResult : Microsoft::AspNetCore::Mvc::ActionResult
public ref class ObjectResult : Microsoft::AspNetCore::Mvc::ActionResult, Microsoft::AspNetCore::Mvc::IActionResult, Microsoft::AspNetCore::Mvc::Infrastructure::IStatusCodeActionResult
public class ObjectResult : Microsoft.AspNetCore.Mvc.ActionResult
public class ObjectResult : Microsoft.AspNetCore.Mvc.ActionResult, Microsoft.AspNetCore.Mvc.IActionResult, Microsoft.AspNetCore.Mvc.Infrastructure.IStatusCodeActionResult
type ObjectResult = class
    inherit ActionResult
type ObjectResult = class
    inherit ActionResult
    interface IStatusCodeActionResult
    interface IActionResult
type ObjectResult = class
    inherit ActionResult
    interface IActionResult
    interface IStatusCodeActionResult
Public Class ObjectResult
Inherits ActionResult
Public Class ObjectResult
Inherits ActionResult
Implements IActionResult, IStatusCodeActionResult
继承
ObjectResult
派生
实现

构造函数

ObjectResult(Object)

使用提供的 value创建一个新ObjectResult实例。

属性

ContentTypes

获取或设置 MediaTypeCollection

DeclaredType

获取或设置声明的类型。

Formatters

IOutputFormatter集合。

StatusCode

获取或设置 HTTP 状态代码。

Value

对象结果。

方法

ExecuteResult(ActionContext)

同步执行操作方法的结果操作。 MVC 调用此方法来处理操作方法的结果。

(继承自 ActionResult)
ExecuteResultAsync(ActionContext)

异步执行操作方法的结果操作。 MVC 调用此方法来处理操作方法的结果。

OnFormatting(ActionContext)

在格式化程序写入输出流之前调用此方法。

适用于