Table of Contents

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

start int

Start index into the number of items.

limit int

Maximum number of items requested.

length int

Number of items actually returned.

total int

Total number of items available on the server.

Properties

Length

Number of items actually returned.

[JsonProperty("length")]
public int Length { get; set; }

Property Value

int

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

int

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

int

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; }

Property Value

int