Class CursorPagedResult<T>
Represents one forward-only page from a cursor-paged query.
public sealed class CursorPagedResult<T>
Type Parameters
TThe entity type.
- Inheritance
-
CursorPagedResult<T>
- Inherited Members
Properties
HasNextPage
True when another page is available.
public bool HasNextPage { get; }
Property Value
Items
The items returned for this page.
public List<T> Items { get; init; }
Property Value
- List<T>
NextCursor
The opaque cursor to pass to After for the next page, or null
when this is the final page.
public string? NextCursor { get; init; }
Property Value
PageSize
The requested maximum number of items for the page.
public int PageSize { get; init; }