Skip to content

ReplPageInfo

Metadata describing one page of a result set.

public sealed record ReplPageInfo : IEquatable<ReplPageInfo>
  • IEquatable<ReplPageInfo>

ReplPageInfo(string?, string?, long?, int)

Section titled “ReplPageInfo(string?, string?, long?, int)”

Metadata describing one page of a result set.

public ReplPageInfo(string? Cursor, string? NextCursor, long? TotalCount, int PageSize)
  • Cursor (string): Cursor used to fetch the current page.
  • NextCursor (string): Cursor that fetches the next page, when available.
  • TotalCount (long?): Total result count, when known.
  • PageSize (int): Requested or effective page size.

Cursor used to fetch the current page.

public string? Cursor { get; init; }

string

Gets a value indicating whether another page is available.

public bool HasMore { get; }

bool

Cursor that fetches the next page, when available.

public string? NextCursor { get; init; }

string

Requested or effective page size.

public int PageSize { get; init; }

int

Total result count, when known.

public long? TotalCount { get; init; }

long?