UnbufferedODataBatchHandler Class

 

An implementation of ODataBatchHandler that doesn't buffer the request content stream.

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

Inheritance Hierarchy

System.Object
  System.Net.Http.HttpMessageHandler
    System.Web.Http.Batch.HttpBatchHandler
      System.Web.Http.OData.Batch.ODataBatchHandler
        System.Web.Http.OData.Batch.UnbufferedODataBatchHandler

Syntax

public class UnbufferedODataBatchHandler : ODataBatchHandler
public ref class UnbufferedODataBatchHandler : ODataBatchHandler
type UnbufferedODataBatchHandler = 
    class
        inherit ODataBatchHandler
    end
Public Class UnbufferedODataBatchHandler
    Inherits ODataBatchHandler

Constructors

Name Description
System_CAPS_pubmethod UnbufferedODataBatchHandler(HttpServer)

Initializes a new instance of the UnbufferedODataBatchHandler class.

Properties

Name Description
System_CAPS_pubproperty Invoker

Gets the invoker to send the batch requests to the HttpServer.(Inherited from HttpBatchHandler.)

System_CAPS_pubproperty MessageQuotas

Gets the ODataMessageQuotas used for reading/writing the batch request/response.(Inherited from ODataBatchHandler.)

System_CAPS_pubproperty ODataRouteName

Gets or sets the name of the OData route associated with this batch handler.(Inherited from ODataBatchHandler.)

Methods

Name Description
System_CAPS_pubmethod CreateResponseMessageAsync(IEnumerable<ODataBatchResponseItem>, HttpRequestMessage, CancellationToken)

Creates the batch response message.

System_CAPS_pubmethod Dispose()

(Inherited from HttpMessageHandler.)

System_CAPS_protmethod Dispose(Boolean)

(Inherited from HttpMessageHandler.)

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod ExecuteChangeSetAsync(ODataBatchReader, Guid, HttpRequestMessage, CancellationToken)

Executes the ChangeSet.

System_CAPS_pubmethod ExecuteOperationAsync(ODataBatchReader, Guid, HttpRequestMessage, CancellationToken)

Executes the operation.

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetBaseUri(HttpRequestMessage)

Gets the base URI for the batched requests.

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ProcessBatchAsync(HttpRequestMessage, CancellationToken)

(Overrides HttpBatchHandler.ProcessBatchAsync(HttpRequestMessage, CancellationToken).)

System_CAPS_protmethod SendAsync(HttpRequestMessage, CancellationToken)

Sends the batch handler asynchronously.(Inherited from HttpBatchHandler.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

System_CAPS_pubmethod ValidateRequest(HttpRequestMessage)

Validates the incoming request that contains the batch request messages.

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.Batch Namespace

Return to top