Click or drag to resize

PaginationParameters Class

Builds optional query string parameters for pagination.
Inheritance Hierarchy
SystemObject
  Smartsheet.Api.ModelsPaginationParameters

Namespace:  Smartsheet.Api.Models
Assemblies:   smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
  smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
Syntax
public class PaginationParameters

The PaginationParameters type exposes the following members.

Constructors
  NameDescription
Public methodPaginationParameters
Builds optional query string parameters for pagination.
Remarks
Most index endpoints default to a page size of 100 results. If you need all results at once, you should specify the includeAll=true query string parameter.
Top
Properties
  NameDescription
Public propertyIncludeAll
If true, include all results (i.e. do not paginate). Mutually exclusive with pageSize and page (they are ignored if includeAll=true is specified).
Public propertyPage
Which page to return. Defaults to 1 if not specified.
Public propertyPageSize
The maximum number of items to return per page. Unless otherwise stated for a specific endpoint, defaults to 100 if not specified.
Top
Methods
  NameDescription
Public methodtoDictionary
Returns a dictionary of query string parameters.
Public methodToQueryString
Returns a formatted string of query string parameters.
Top
See Also