NegotiatedContentResult<T> Class

Definition

An action result that performs content negotiation.

public class NegotiatedContentResult<T> : Microsoft.AspNetCore.Mvc.ObjectResult
type NegotiatedContentResult<'T> = class
    inherit ObjectResult
Public Class NegotiatedContentResult(Of T)
Inherits ObjectResult

Type Parameters

T

The type of content in the entity body.

Inheritance
NegotiatedContentResult<T>

Constructors

NegotiatedContentResult<T>(HttpStatusCode, T)

Initializes a new instance of the NegotiatedContentResult<T> class with the values provided.

Properties

Content

Gets the content value to negotiate and format in the entity body.

ContentTypes

Gets or sets the MediaTypeCollection.

(Inherited from ObjectResult)
DeclaredType

Gets or sets the declared type.

(Inherited from ObjectResult)
Formatters

The collection of IOutputFormatter.

(Inherited from ObjectResult)
StatusCode

Gets or sets the HTTP status code.

(Inherited from ObjectResult)
Value

The object result.

(Inherited from ObjectResult)

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.

(Inherited from ObjectResult)

Applies to