Class PaginationInfo
- Namespace
- Auth0.ManagementApi.Paging
- Assembly
- Auth0.ManagementApi.dll
Specifies pagination info to use when requesting paged results.
public class PaginationInfo
- Inheritance
-
PaginationInfo
- Inherited Members
Constructors
PaginationInfo(int, int, bool)
Initializes a new instance of the PaginationInfo class.
public PaginationInfo(int pageNo = 0, int perPage = 50, bool includeTotals = false)
Parameters
pageNo
intPage index of the results to return. First page is 0.
perPage
intNumber of results per page.
includeTotals
boolWhether to return the complete total result count (true) or not (false).
Properties
IncludeTotals
Return results with a total result count (true) or with no totals (false, default).
public bool IncludeTotals { get; }
Property Value
PageNo
Page index of the results to return. First page is 0.
public int PageNo { get; }
Property Value
PerPage
Number of results per page.
public int PerPage { get; }