Share via


UpdatedODataResult<T> Class

 

Represents an action result that is a response to a PUT, PATCH, or a MERGE operation on an OData entity.

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

Inheritance Hierarchy

System.Object
  System.Web.Http.OData.Results.UpdatedODataResult<T>

Syntax

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

Type Parameters

  • T
    The entity type.

Constructors

Name Description
System_CAPS_pubmethod UpdatedODataResult<T>(T, ApiController)

Initializes a new instance of the UpdatedODataResult<T> class.

System_CAPS_pubmethod UpdatedODataResult<T>(T, IContentNegotiator, HttpRequestMessage, IEnumerable<MediaTypeFormatter>)

Initializes a new instance of the UpdatedODataResult<T> class.

Properties

Name Description
System_CAPS_pubproperty ContentNegotiator

Gets the content negotiator to handle content negotiation.

System_CAPS_pubproperty Entity

Gets the entity that was updated.

System_CAPS_pubproperty Formatters

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

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)

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.)

Remarks

This action result handles content negotiation and the HTTP prefer header.

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.OData.Results Namespace

Return to top