Show / Hide Table of Contents

Interface IPagedList<T>

Inherited Members
IList<T>.IndexOf(T)
IList<T>.Insert(int, T)
IList<T>.RemoveAt(int)
IList<T>.this[int]
ICollection<T>.Add(T)
ICollection<T>.Clear()
ICollection<T>.Contains(T)
ICollection<T>.CopyTo(T[], int)
ICollection<T>.Remove(T)
ICollection<T>.Count
ICollection<T>.IsReadOnly
IEnumerable<T>.GetEnumerator()
Namespace: DotNetNuke.Collections
Assembly: DotNetNuke.dll
Syntax
public interface IPagedList<T> : IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
Name Description
T

Properties

HasNextPage

Declaration
bool HasNextPage { get; }
Property Value
Type Description
bool

HasPreviousPage

Declaration
bool HasPreviousPage { get; }
Property Value
Type Description
bool

IsFirstPage

Declaration
bool IsFirstPage { get; }
Property Value
Type Description
bool

IsLastPage

Declaration
bool IsLastPage { get; }
Property Value
Type Description
bool

PageCount

Declaration
int PageCount { get; set; }
Property Value
Type Description
int

PageIndex

Declaration
int PageIndex { get; set; }
Property Value
Type Description
int

PageSize

Declaration
int PageSize { get; set; }
Property Value
Type Description
int

TotalCount

Declaration
int TotalCount { get; set; }
Property Value
Type Description
int

Extension Methods

CollectionExtensions.Serialize<T>(IPagedList<T>)
CollectionExtensions.ForEach<TType>(IEnumerable<TType>, Action<TType>)
PagingExtensions.InPagesOf<T>(IEnumerable<T>, int)
PagingExtensions.ToPagedList<T>(IEnumerable<T>, int, int)
JsonExtensionsWeb.ToJson(object)
Back to top by the community, for the community... #DNNCMS