Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

ObjectResult Class

Definition

Namespace:
Microsoft.AspNetCore.Mvc
Assembly:
Microsoft.AspNetCore.Mvc.Core.dll
Package:
Microsoft.AspNetCore.Mvc.Core v1.0.0
Package:
Microsoft.AspNetCore.Mvc.Core v1.1.0
Package:
Microsoft.AspNetCore.App.Ref v10.0.0
Package:
Microsoft.AspNetCore.App.Ref v11.0.0-preview.4.26230.115
Package:
Microsoft.AspNetCore.Mvc.Core v2.0.0
Package:
Microsoft.AspNetCore.Mvc.Core v2.1.0
Package:
Microsoft.AspNetCore.Mvc.Core v2.2.0
Package:
Microsoft.AspNetCore.App.Ref v3.0.1
Package:
Microsoft.AspNetCore.App.Ref v3.1.10
Package:
Microsoft.AspNetCore.App.Ref v5.0.0
Package:
Microsoft.AspNetCore.App.Ref v6.0.36
Package:
Microsoft.AspNetCore.App.Ref v7.0.5
Package:
Microsoft.AspNetCore.App.Ref v8.0.19
Package:
Microsoft.AspNetCore.App.Ref v9.0.8
Source:
ObjectResult.cs
Source:
ObjectResult.cs
Source:
ObjectResult.cs

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
ObjectResult
Derived
Implements

Constructors

Name Description
ObjectResult(Object)

Creates a new ObjectResult instance with the provided value.

Properties

Name Description
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

Name Description
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.

Applies to


Feedback

Was this page helpful?