Show / Hide Table of Contents

Class PaginationResult<TItem>

Response base class for all requests implementing pagination.

Inheritance
System.Object
PaginationRequest
PaginationResult<TItem>
Inherited Members
PaginationRequest.PageNumber
PaginationRequest.PageSize
PaginationRequest.SortKey
PaginationRequest.SortDirection
PaginationRequest.IsAscending
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Celerik.NetCore.Services
Assembly: cs.temp.dll.dll
Syntax
public class PaginationResult<TItem> : PaginationRequest
Type Parameters
Name Description
TItem

The entity type in the "Items" collection.

Properties

Items

List of items including in the result according to the page size.

Declaration
public IEnumerable<TItem> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<TItem>

PageCount

The total page count.

Declaration
public int PageCount { get; set; }
Property Value
Type Description
System.Int32

RecordCount

The total record count.

Declaration
public int RecordCount { get; set; }
Property Value
Type Description
System.Int32
In This Article
Back to top Generated by DocFX