Represents a batch operation on a table.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
| Visual Basic |
|---|
Dim instance As TableBatchOperation |
Syntax
| Visual Basic |
|---|
<DefaultMemberAttribute("Item")> _
Public NotInheritable Class TableBatchOperation
Implements IList(Of TableOperation), ICollection(Of TableOperation), _
IEnumerable(Of TableOperation), IEnumerable |
| C# |
|---|
[DefaultMemberAttribute("Item")]
public sealed class TableBatchOperation : IList<TableOperation>, ICollection<TableOperation>,
IEnumerable<TableOperation>, IEnumerable |
| C++ |
|---|
[DefaultMemberAttribute(L"Item")] public ref class TableBatchOperation sealed : IList<TableOperation^>, ICollection<TableOperation^>, IEnumerable<TableOperation^>, IEnumerable |
| J# |
|---|
/** @attribute DefaultMemberAttribute("Item") */
public final class TableBatchOperation implements IList<TableOperation>,
ICollection<TableOperation>, IEnumerable<TableOperation>, IEnumerable |
| JScript |
|---|
DefaultMemberAttribute("Item")
public final class TableBatchOperation implements IList<TableOperation>,
ICollection<TableOperation>, IEnumerable<TableOperation>, IEnumerable |
Remarks
A batch operation is a collection of table operations which are executed by the Storage Service REST API as a single atomic operation, by invoking an Entity Group Transaction.
A batch operation may contain up to 100 individual table operations, with the requirement that each operation entity must have same partition key. A batch with a retrieve operation cannot contain any other operations. Note that the total payload of a batch operation is limited to 4MB.
Inheritance Hierarchy
System.Object
Microsoft.WindowsAzure.Storage.Table.TableBatchOperation
Microsoft.WindowsAzure.Storage.Table.TableBatchOperation
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.