Search documentationEsc

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 : IItem

Type parameters

NameDescription
T

Example

Members

Propertys

IPage<T>.Total

The total amount items that matched the query.

int? Total { get; }

ReturnsInt32}

IPage<T>.Size

The size of the current page.

int Size { get; }

ReturnsInt32

IPage<T>.Continuation

The continuation token used to load results from a stateless marker.

string? Continuation { get; }

ReturnsString

This is provided by cosmos DB.