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)
|
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
See Also