Provides an interface to a paged list, which contains a snapshot of a single page of data from the data store

Namespace: DotNetNuke.Collections
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public interface IPagedList<T> : IList<T>, 
	ICollection<T>, IEnumerable<T>, IEnumerable
Visual Basic
Public Interface IPagedList(Of T)
	Inherits IList(Of T), ICollection(Of T), IEnumerable(Of T), 
	IEnumerable

Type Parameters

T
The type of objects stored in the list

See Also