BatchOperation Class

Definition

Defines the basic structure of constructing batched requests. Specific operations are supported by specific implementations.

public abstract class BatchOperation
type BatchOperation = class
Public MustInherit Class BatchOperation
Inheritance
BatchOperation
Derived

Remarks

Batch operations allow for preparing a large number of requests and sending them all in one operation. Upon reaching the service, each suboperation is treated independently. In particular, this means the batch operation is not atomic; some suboperations may fail while others succeed. If any suboperation fails, an exception will be thrown containing a list of both successful and failed responses with relevant information on each.

Constructors

BatchOperation()

Applies to