The PageableList<T> generic type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
| Add(Object) |
Adds an object to the end of the PageableList<T>.
| |
| Add(T) |
Adds an object to the end of the PageableList<T>.
| |
| AsReadOnly | Returns this if read-only, otherwise a read-only clone. | |
| AsWritable | Returns a writable clone if this is read-only, otherwise this. | |
| Clear |
Removes all elements from the PageableList<T>.
| |
| Contains(Object) |
Determines whether an element is in the PageableList<T>.
| |
| Contains(T) |
Determines whether an element is in the PageableList<T>.
| |
| CopyTo(Array, Int32) |
Copies the entire PageableList<T> to a compatible one-dimensional array,
starting at the specified index of the target array.
| |
| CopyTo(T[], Int32) |
Copies the entire PageableList<T> to a compatible one-dimensional array,
starting at the specified index of the target array.
| |
| Dispose |
Releases all memory associated with the PageableList<T>.
| |
| Enumerate |
Returns an enumerator that iterate through the given elements.
| |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
| GetEnumerator |
Returns an enumerator that iterates through a collection.
| |
| GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| IndexOf(Object) | Searches for the specified object and returns the
zero-based index of the first occurrence within the entire PageableList<T>.
| |
| IndexOf(T) | Searches for the specified object and returns the
zero-based index of the first occurrence within the entire PageableList<T>.
| |
| Insert(Int32, Object) |
Inserts an element into the PageableList<T> at the specified index.
| |
| Insert(Int32, T) |
Inserts an element into the PageableList<T> at the specified index.
| |
| Remove(Object) |
Removes the first occurrence of a specific object from the PageableList<T>.
| |
| Remove(T) |
Removes the first occurrence of a specific object from the PageableList<T>.
| |
| RemoveAt |
Removes the element at the specified index of the PageableList<T>.
| |
| SetReadOnly |
Calling this method will turn the list into a read-only collection.
Any attempt to change the content after this call will throw an exception.
| |
| Sort() |
Sorts the elements in the entire PageableList<T> using the default comparer.
| |
| Sort(IComparer<T>) |
Sorts the elements in the entire PageableList<T> using the specified comparer.
| |
| Sort<S>(PageableList<S>) |
Sorts a pair of PageableList<T> objects
(this contains the keys and valueList contains the corresponding items)
based on the keys in this. The default comparer is used when sorting.
| |
| Sort<S>(PageableList<S>, IComparer<T>) |
Sorts a pair of PageableList<T> objects
(this contains the keys and valueList contains the corresponding items)
based on the keys in this. The supplied comparer is used when sorting.
| |
| ToString | Returns a string that represents the current object. (Inherited from Object.) |
Explicit Interface Implementations
| Name | Description | |
|---|---|---|
| IEnumerable.GetEnumerator |
Returns an enumerator that iterates through a collection.
| |
| ISerializable.GetObjectData | Populates a SerializationInfo with the data needed to serialize the target object. | |
| IList.RemoveAt |
Removes the IList item at the specified index.
|
See Also