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::ActionResultpublic ref class ObjectResult : Microsoft::AspNetCore::Mvc::ActionResult, Microsoft::AspNetCore::Mvc::IActionResult, Microsoft::AspNetCore::Mvc::Infrastructure::IStatusCodeActionResultpublic class ObjectResult : Microsoft.AspNetCore.Mvc.ActionResultpublic class ObjectResult : Microsoft.AspNetCore.Mvc.ActionResult, Microsoft.AspNetCore.Mvc.IActionResult, Microsoft.AspNetCore.Mvc.Infrastructure.IStatusCodeActionResulttype ObjectResult = class
    inherit ActionResulttype ObjectResult = class
    inherit ActionResult
    interface IStatusCodeActionResult
    interface IActionResulttype ObjectResult = class
    inherit ActionResult
    interface IActionResult
    interface IStatusCodeActionResultPublic Class ObjectResult
Inherits ActionResultPublic 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. |