ObjectResult Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An ActionResult that on execution will write an object to the response using mechanisms provided by the host.
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
- Inheritance
- Derived
- Implements
Constructors
ObjectResult(Object) |
Creates a new ObjectResult instance with the provided |
Properties
ContentTypes |
Gets or sets the MediaTypeCollection. |
DeclaredType |
Gets or sets the declared type. |
Formatters |
The collection of IOutputFormatter. |
StatusCode |
Gets or sets the HTTP status code. |
Value |
The object result. |
Methods
ExecuteResult(ActionContext) |
Executes the result operation of the action method synchronously. This method is called by MVC to process the result of an action method. (Inherited from ActionResult) |
ExecuteResultAsync(ActionContext) |
Executes the result operation of the action method asynchronously. This method is called by MVC to process the result of an action method. |
OnFormatting(ActionContext) |
This method is called before the formatter writes to the output stream. |