Interface IPagedList<T>
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.dll
Syntax
public interface IPagedList<T>
Type Parameters
Name | Description |
---|---|
T | The type of objects stored in the list. |
Properties
| Improve this Doc View SourceHasNextPage
Gets a value indicating whether gets a boolean indicating if there is a next page available.
Declaration
bool HasNextPage { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
HasPreviousPage
Gets a value indicating whether gets a boolean indicating if there is a previous page available.
Declaration
bool HasPreviousPage { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsFirstPage
Gets a value indicating whether gets a boolean indicating if this is the first page.
Declaration
bool IsFirstPage { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsLastPage
Gets a value indicating whether gets a boolean indicating if this is the last page.
Declaration
bool IsLastPage { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
PageCount
Gets or sets the no of pages in this list.
Declaration
int PageCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PageIndex
Gets or sets the index of the page contained in this list.
Declaration
int PageIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PageSize
Gets or sets the size of the page in this list.
Declaration
int PageSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
TotalCount
Gets or sets the total number of objects in the data store.
Declaration
int TotalCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |