Table of Contents

Class Page

Namespace
GroupeIsa.Neos.ClusterCommunication.DistributedStore.Query
Assembly
GroupeIsa.Neos.ClusterCommunication.dll

Represents the page.

public class Page
Inheritance
Page
Inherited Members

Constructors

Page(int, string?)

Initializes a new instance of the Page class.

public Page(int limit, string? token = null)

Parameters

limit int

The maximum items by page.

token string

The pagination token to get the next page.

Properties

Limit

Gets or sets the maximum items by page.

[JsonPropertyName("limit")]
public int Limit { get; set; }

Property Value

int

Token

Gets or sets the pagination token to get the next page.

[JsonPropertyName("token")]
public string? Token { get; set; }

Property Value

string