Interface IPageInfo
Interface for an object that describes information about a page of data.
Namespace: Tableau.Migration.Paging
Assembly: Tableau.Migration.dll
Syntax
public interface IPageInfo
Properties
FetchedAllPages
Indicates whether the SDK has already fetched all pages or not.
Declaration
bool FetchedAllPages { get; }
Property Value
Type | Description |
---|---|
bool |
PageNumber
Gets the 1-indexed page number for the current page.
Declaration
int PageNumber { get; }
Property Value
Type | Description |
---|---|
int |
PageSize
Gets the expected maximum size of the page.
Declaration
int PageSize { get; }
Property Value
Type | Description |
---|---|
int |
TotalCount
Gets the total unpaged item count.
Declaration
int TotalCount { get; }
Property Value
Type | Description |
---|---|
int |