TaskCollection.Item Property |
Gets or sets the element at the specified index.
Namespace:
AGI.Parallel.Client
Assembly:
AGI.Parallel.Client (in AGI.Parallel.Client.dll) Version: 2.10.0.1777 (2.10.0.1777)
Syntaxpublic Task this[
int index
] { get; set; }
Public Default Property Item (
index As Integer
) As Task
Get
Set
Parameters
- index
- Type: System.Int32
The zero-based index of the element to get or set.
Return Value
Type:
TaskThe element at the specified index.
Implements
IList<T>.Item[Int32]
ExceptionsException | Condition |
---|
ArgumentOutOfRangeException | index is not a valid index in the IList<T>. |
NotSupportedException | The property is set and the IList<T> is read-only. |
See Also