Table of Contents

Interface IPageResponse

Namespace
DynamicData.Operators
Assembly
DynamicData.dll

Response from the pagination operator.

public interface IPageResponse

Properties

Page

Gets the current page.

int Page { get; }

Property Value

int

PageSize

Gets the size of the page.

int PageSize { get; }

Property Value

int

Pages

Gets total number of pages.

int Pages { get; }

Property Value

int

TotalSize

Gets the total number of records in the underlying cache.

int TotalSize { get; }

Property Value

int