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.OData.Results
Assembly: System.Web.OData (in System.Web.OData.dll)
Inheritance Hierarchy
System.Object
System.Web.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 | |
---|---|---|
UpdatedODataResult<T>(T, ApiController) | Initializes a new instance of the UpdatedODataResult<T> class. |
|
UpdatedODataResult<T>(T, IContentNegotiator, HttpRequestMessage, IEnumerable<MediaTypeFormatter>) | Initializes a new instance of the UpdatedODataResult<T> class. |
Properties
Name | Description | |
---|---|---|
ContentNegotiator | Gets the content negotiator to handle content negotiation. |
|
Entity | Gets the entity that was updated. |
|
Formatters | Gets the formatters to use to negotiate and format the content. |
|
Request | Gets the request message which led to this result. |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
ExecuteAsync(CancellationToken) | ||
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
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.OData.Results Namespace
Return to top