Click or drag to resize

IPagedList Interface

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

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public interface IPagedList : IList, 
	ICollection, IEnumerable
View Source

The IPagedList type exposes the following members.

Properties
 NameDescription
Public propertyCountGets the number of elements contained in the ICollection.
(Inherited from ICollection)
Public propertyIsFixedSizeGets a value indicating whether the IList has a fixed size.
(Inherited from IList)
Public propertyIsReadOnlyGets a value indicating whether the IList is read-only.
(Inherited from IList)
Public propertyIsSynchronizedGets a value indicating whether access to the ICollection is synchronized (thread safe).
(Inherited from ICollection)
Public propertyItemGets or sets the element at the specified index.
(Inherited from IList)
Public propertyPage Gets current page number.
Public propertyPageCount Gets calculated page count based on page size and total items count.
Public propertyPageSize Gets current page size.
Public propertySyncRootGets an object that can be used to synchronize access to the ICollection.
(Inherited from ICollection)
Public propertyTotalCount Gets total count of elements in enumeration.
Top
Methods
 NameDescription
Public methodAddAdds an item to the IList.
(Inherited from IList)
Public methodClearRemoves all items from the IList.
(Inherited from IList)
Public methodContainsDetermines whether the IList contains a specific value.
(Inherited from IList)
Public methodCopyToCopies the elements of the ICollection to an Array, starting at a particular Array index.
(Inherited from ICollection)
Public methodGetEnumeratorReturns an enumerator that iterates through a collection.
(Inherited from IEnumerable)
Public methodIndexOfDetermines the index of a specific item in the IList.
(Inherited from IList)
Public methodInsertInserts an item to the IList at the specified index.
(Inherited from IList)
Public methodRemoveRemoves the first occurrence of a specific object from the IList.
(Inherited from IList)
Public methodRemoveAtRemoves the IList item at the specified index.
(Inherited from IList)
Top
See Also