TableBatchOperation.Item Property

Windows Runtime Azure Storage Client Library

Gets or sets the TableOperation item at the specified index.

Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Usage

Visual Basic
Dim instance As TableBatchOperation
Dim index As Integer
Dim value As TableOperation

value = instance(index)

instance(index) = value

Syntax

Visual Basic
Public Default Property Item ( _
	index As Integer _
) As TableOperation
C#
public TableOperation this [
	int index
] { get; set; }
C++
public:
virtual property TableOperation^ default [int] {
	TableOperation^ get (int index) sealed;
	void set (int index, TableOperation^ value) sealed;
}
J#
/** @property */
public final TableOperation get_Item (int index)

/** @property */
public final void set_Item (int index, TableOperation value)
JScript

Property Value

The TableOperation item at the specified index.

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.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also