The following tables list the members exposed by CollectionBase<T>.
Name | Description | |
---|---|---|
CollectionBase<T> Constructor | Initializes a new instance of the CollectionBase<T> class. |
Name | Description | |
---|---|---|
Count | Gets the amount of items in the collection. | |
IsReadOnly | Gets whether or not the collection is read only. | |
Item | Gets the item at the specified index. |
Name | Description | |
---|---|---|
Items | Gets the unerlying collection used to store all items. |
Name | Description | |
---|---|---|
Add | Adds the item to the end of the collection. | |
Clear | Removes all items from the collection. | |
Contains | Determines if the collection contains the specified item. | |
CopyTo | Copies the collection to the specified array, starting at the specified index. | |
Dispose | Overloaded. Releases the unmanaged resources used by the CollectionBase<T> and optionally releases the managed resources. | |
GetEnumerator | Gets the System.Collections.IEnumerator for the collection. | |
IndexOf | Gets the index of the specified item. | |
Insert | Inserts the item at the specified index. | |
Remove | Removes the specified item. | |
RemoveAt | Removes the item at the specified index. |
Name | Description | |
---|---|---|
AddItem | Adds the item at the specified index. | |
AddItemSilently | Adds the item at the specified index, without triggering any events. | |
GetCount | Retrieves the amount of items in the collection. | |
GetItem | Gets the item at the specified index. | |
InsertItem | Adds an item to the collection at a given index. | |
OnItemAdded | Invoked when an Item is added at the specified index. | |
OnItemRemoved | Invoked when an Item is removed from the collection. | |
OnNotifyCollectionChanged | Invoked when this collection changes. | |
OnPropertyChanged | Occurs when a property changes. | |
OnResetItems | Invoked when all items are cleared from a collection. | |
RemoveItem | Removes the item at the specified index. | |
RemoveItemSilently | Removes the item at the specified index, without triggering any events. | |
ReplaceItem | Replaces the item at the specified index with the specified item. | |
ResetItems | Removes all items from the collection. | |
ResetItemsSilently | Removes all items from the collection without firing any events. |
Name | Description | |
---|---|---|
CollectionChanged | Fired when the collection changes. |