DataStoreVirtualCollectionT Methods |
The DataStoreVirtualCollectionT generic type exposes the following members.
Name | Description | |
---|---|---|
![]() | Add(Object) |
Adds an item to the current collection.
|
![]() | Add(T) |
Adds an item to the current collection. This collection is read-only so this throws an exception.
|
![]() | Clear |
Clears all items from the collection. This collection is read-only so this throws an exception.
|
![]() | Contains(Object) |
Determines whether the current collection contains a specific value.
|
![]() | Contains(T) |
Determines whether the current collection contains a specific value.
|
![]() | CopyTo(Array, Int32) |
Copies the contents of the collection to the specified array starting at the specified index
|
![]() | CopyTo(T, Int32) |
Copies the contents of the collection to the specified array starting at the specified index
|
![]() | GetEnumerator |
Gets the enumerator for the collection
|
![]() | IndexOf(Object) |
Determines the index of a specific item in the current instance.
|
![]() | IndexOf(T) |
Determines the index of a specific item in the collection.
|
![]() | Insert(Int32, Object) |
Insert a value into the collection with the specified index
|
![]() | Insert(Int32, T) |
Inserts an item at the specified index. This collection is read-only so this throws an exception.
|
![]() | Remove(Object) |
Removes the first occurrence of an item from the current collection.
|
![]() | Remove(T) |
Remove the specified item. This collection is read-only so this throws an exception.
|
![]() | RemoveAt |
Removes the item at the specified index. This collection is read-only so this throws an exception.
|