[]
Represents FastList with owner object. Notifies the owner of interesting events on the collection if the owner supports the C1.C1Preview.ICollectionOwner interface.
public class OwnedFastListBase : FastList, IList, ICollection, IEnumerable
| Name | Description |
|---|---|
| OwnedFastListBase() | Initializes a new instance of the OwnedFastList class. |
| OwnedFastListBase(object) | Initializes a new instance of the OwnedFastList class. |
| Name | Description |
|---|---|
| Owner | Gets the owner of collection. |
| Name | Description |
|---|---|
| Clear() | Clears the current OwnedFastListBase. |
| Insert(int, object) | Inserts the element at the specified index. |
| OnClear() | Called when the list is about to be cleared. |
| OnClearComplete() | Called after the list has been cleared. |
| OnInsert(int, object) | Called when an item is about to be iserted. |
| OnInsertComplete(int, object) | Called after an item has been inserted. |
| OnRemove(int, object) | Called when an item is about to be removed. |
| OnRemoveComplete(int, object) | Called after an item has been removed. |
| RemoveAt(int) | Removes the specified element from the current list. |