Skip to main content

ChunkList<T> Members

A collection that improves performance in applications where you handle large and frequent data source updates.

Constructors

Name Description
ChunkList(Int32, Boolean, Boolean) Initializes a new instance of the ChunkList<T> class.
ChunkList(Int32, Boolean) Initializes a new instance of the ChunkList<T> class.

Properties

Name Description
Count Gets the number of items in the collection.
Item[Int32] Provides indexed access to individual items in the collection.
SupportPropertyChanged Gets whether the chunk list listens to PropertyChanged events of its elements.
UseChunksCache Gets whether the chunk list stores chunk indexes for its items in a hash table.

Methods

Name Description
Add(T) Adds the specified item to the collection.
Clear() Clears the collection.
Contains(T) Returns whether the collection contains the specified item.
CopyTo(T[], Int32) Copies items of the collection to the specified one-dimensional array.
Equals(Object, Object) static Determines whether the specified object instances are considered equal. Inherited from Object.
Equals(Object) Determines whether the specified object is equal to the current object. Inherited from Object.
GetEnumerator() Returns an IDictionaryEnumerator that can iterate through the hash table.
GetHashCode() Serves as the default hash function. Inherited from Object.
GetType() Gets the Type of the current instance. Inherited from Object.
IndexOf(T) Returns the specified object’s position within the chunk list.
Insert(Int32, T) Adds the specified item to the collection at the specified position.
MemberwiseClone() protected Creates a shallow copy of the current Object. Inherited from Object.
ReferenceEquals(Object, Object) static Determines whether the specified Object instances are the same instance. Inherited from Object.
Remove(T) Removes the specified item from the collection.
RemoveAt(Int32) Removes an item at the specified position from the collection.
ToString() Returns a string that represents the current object. Inherited from Object.

Events

Name Description
ListChanged Occurs after the data source has been changed.
ListChanging Occurs before the data source is changed.
See Also