Table of Contents

Class CheckpointPaginationInfo

Namespace
Auth0.ManagementApi.Paging
Assembly
Auth0.ManagementApi.dll

Specifies checkpoint pagination info to use when requesting paged results.

public class CheckpointPaginationInfo
Inheritance
CheckpointPaginationInfo
Inherited Members

Constructors

CheckpointPaginationInfo(int, string)

Initializes a new instance of the CheckpointPaginationInfo class.

public CheckpointPaginationInfo(int take = 50, string from = null)

Parameters

take int

When using checkpoint pagination, the number of results per page.

from string

When using checkpoint pagination, an Id from which to begin the next page of results.

Properties

From

When using checkpoint pagination, an Id from which to begin the next page of results.

public string From { get; }

Property Value

string

Take

When using checkpoint pagination, the number of results per page. Required to use checkpoint pagination.

public int Take { get; }

Property Value

int