IPagedList Interface

Defines an interface for PagedListT instances that is usable regardless of any specified type.

Definition

Namespace: Gemstone.Collections
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.110 -- Release Build+3e0464f4461df4d3e1175b13966eb47ff832554d
public interface IPagedList : IList, 
	ICollection, IEnumerable
Implements
ICollection, IEnumerable, IList

Properties

CountGets the number of elements contained in the ICollection.
(Inherited from ICollection)
IsFixedSizeGets a value indicating whether the IList has a fixed size.
(Inherited from IList)
IsReadOnlyGets a value indicating whether the IList is read-only.
(Inherited from IList)
IsSynchronizedGets a value indicating whether access to the ICollection is synchronized (thread safe).
(Inherited from ICollection)
ItemGets or sets the element at the specified index.
(Inherited from IList)
Page Gets current page number.
PageCount Gets calculated page count based on page size and total items count.
PageSize Gets current page size.
SyncRootGets an object that can be used to synchronize access to the ICollection.
(Inherited from ICollection)
TotalCount Gets total count of elements in enumeration.

Methods

AddAdds an item to the IList.
(Inherited from IList)
ClearRemoves all items from the IList.
(Inherited from IList)
ContainsDetermines whether the IList contains a specific value.
(Inherited from IList)
CopyToCopies the elements of the ICollection to an Array, starting at a particular Array index.
(Inherited from ICollection)
GetEnumeratorReturns an enumerator that iterates through a collection.
(Inherited from IEnumerable)
IndexOfDetermines the index of a specific item in the IList.
(Inherited from IList)
InsertInserts an item to the IList at the specified index.
(Inherited from IList)
RemoveRemoves the first occurrence of a specific object from the IList.
(Inherited from IList)
RemoveAtRemoves the IList item at the specified index.
(Inherited from IList)

See Also