CreatedNegotiatedContentResult<T> Class

 

Represents an action result that performs content negotiation and returns a Created response when it succeeds.

Namespace:   System.Web.Http.Results
Assembly:  System.Web.Http (in System.Web.Http.dll)

Inheritance Hierarchy

System.Object
  System.Web.Http.Results.CreatedNegotiatedContentResult<T>

Syntax

public class CreatedNegotiatedContentResult<T> : IHttpActionResult
generic<typename T>
public ref class CreatedNegotiatedContentResult : IHttpActionResult
type CreatedNegotiatedContentResult<'T> = 
    class
        interface IHttpActionResult
    end
Public Class CreatedNegotiatedContentResult(Of T)
    Implements IHttpActionResult

Type Parameters

  • T
    The type of content in the entity body.

Constructors

Name Description
System_CAPS_pubmethod CreatedNegotiatedContentResult<T>(Uri, T, ApiController)

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

System_CAPS_pubmethod CreatedNegotiatedContentResult<T>(Uri, T, IContentNegotiator, HttpRequestMessage, IEnumerable<MediaTypeFormatter>)

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

Properties

Name Description
System_CAPS_pubproperty Content

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

System_CAPS_pubproperty ContentNegotiator

Gets the content negotiator to handle content negotiation.

System_CAPS_pubproperty Formatters

Gets the formatters to use to negotiate and format the content.

System_CAPS_pubproperty Location

Gets the location at which the content has been created.

System_CAPS_pubproperty Request

Gets the request message which led to this result.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod ExecuteAsync(CancellationToken)

Executes asynchronously the operation of the created negotiated content result.

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

System.Web.Http.Results Namespace

Return to top