IPage<T>
Represents a page of data from a cosmos query
Namespace: Microsoft.Azure.CosmosRepository.Paging
Kind: interface
Represents a page of data from a cosmos query
public interface IPage<out T> : IQueryResult<T> where T : IItemType parameters
| Name | Description |
|---|---|
T | — |
Example
Members
Propertys
IPage<T>.Total
The total amount items that matched the query.
int? Total { get; }Returns — Int32}
IPage<T>.Size
The size of the current page.
int Size { get; }Returns — Int32
IPage<T>.Continuation
The continuation token used to load results from a stateless marker.
string? Continuation { get; }Returns — String
This is provided by cosmos DB.