Class PaginationRequest
Payload base class for all requests implementing pagination.
Inherited Members
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 PaginationRequest
Properties
IsAscending
Indicates whether sort is ascending.
Declaration
public bool IsAscending { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
PageNumber
The page number, starting from 1 for the first page. By default: 1.
Declaration
public int PageNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
PageSize
Number of records per page. By default: int.MaxValue.
Declaration
public int PageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
SortDirection
The sort direction, specify "asc" or "desc".
Declaration
public string SortDirection { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
SortKey
The sort key.
Declaration
public string SortKey { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |