Table of Contents

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 int

Page index of the results to return. First page is 0.

perPage int

Number of results per page.

includeTotals bool

Whether 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

bool

PageNo

Page index of the results to return. First page is 0.

public int PageNo { get; }

Property Value

int

PerPage

Number of results per page.

public int PerPage { get; }

Property Value

int