Class PagingInformation
- Namespace
- Auth0.ManagementApi.Paging
- Assembly
- Auth0.ManagementApi.dll
Contains paging information that details what page a list of items relates to, how many more there are etc.
public class PagingInformation
- Inheritance
-
PagingInformation
- Inherited Members
Constructors
PagingInformation(int, int, int, int)
Initializes a new instance of the PagingInformation class with the desired arguments.
public PagingInformation(int start, int limit, int length, int total)
Parameters
startintStart index into the number of items.
limitintMaximum number of items requested.
lengthintNumber of items actually returned.
totalintTotal number of items available on the server.
Properties
Length
Number of items actually returned.
[JsonProperty("length")]
public int Length { get; set; }
Property Value
Remarks
This is either the per_page you requested if there
are more results or a number smaller than that if this
is the last page of results and there are no more to
page through.
Limit
Maximum number of items requested.
[JsonProperty("limit")]
public int Limit { get; set; }
Property Value
Remarks
This is the per_page you requested.
Start
Start index into the number of items.
[JsonProperty("start")]
public int Start { get; set; }
Property Value
Remarks
This is the page you requested multiplied by the per_page.
Total
Total number of items available on the server.
[JsonProperty("total")]
public int Total { get; set; }