PageQueryResult<T>
Supports all classes in the .NET class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all .NET classes; it is the root of the type
Namespace: Microsoft.Azure.CosmosRepository.Paging
Kind: class
Supports all classes in the .NET class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all .NET classes; it is the root of the type hierarchy.
public class PageQueryResult<T> : Page<T>, IPageQueryResult<T>, IPage<T>, IQueryResult<T> where T : IItemType parameters
| Name | Description |
|---|---|
T | — |
Example
Members
Propertys
PageQueryResult<T>.TotalPages
The total amount pages that matched the query.
public int? TotalPages { get; }Returns — Int32}
PageQueryResult<T>.PageNumber
The total amount items that matched the query.
public int? PageNumber { get; }Returns — Int32}
PageQueryResult<T>.HasPreviousPage
Gets a value indicating whether the are previous pages.
public bool HasPreviousPage { get; }Returns — Boolean
PageQueryResult<T>.HasNextPage
Gets a value indicating whether the are next pages.
public bool? HasNextPage { get; }Returns — Boolean}
PageQueryResult<T>.PreviousPageNumber
The previous page number.
public int PreviousPageNumber { get; }Returns — Int32
PageQueryResult<T>.NextPageNumber
The next page number.
public int? NextPageNumber { get; }Returns — Int32}