Class PagedList<T>
Assembly: DotNetNuke.dll
Syntax
public class PagedList<T> : List<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IPagedList<T>, IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
Constructors
PagedList(IEnumerable<T>, int, int)
Declaration
public PagedList(IEnumerable<T> source, int pageIndex, int pageSize)
Parameters
PagedList(IEnumerable<T>, int, int, int)
Declaration
public PagedList(IEnumerable<T> items, int totalCount, int pageIndex, int pageSize)
Parameters
Properties
HasNextPage
Declaration
public bool HasNextPage { get; }
Property Value
HasPreviousPage
Declaration
public bool HasPreviousPage { get; }
Property Value
IsFirstPage
Declaration
public bool IsFirstPage { get; }
Property Value
IsLastPage
Declaration
public bool IsLastPage { get; }
Property Value
PageCount
Declaration
public int PageCount { get; set; }
Property Value
PageIndex
Declaration
public int PageIndex { get; set; }
Property Value
PageSize
Declaration
public int PageSize { get; set; }
Property Value
TotalCount
Declaration
public int TotalCount { get; set; }
Property Value
Implements
Extension Methods