Table of Contents

Class PaginationSettings

Namespace
Textkernel.Tx.Models.API.Matching.Request
Assembly
Textkernel.Tx.SDK.dll

Settings for pagination of results

public class PaginationSettings
Inheritance
PaginationSettings
Inherited Members

Properties

Skip

How many results to skip. For example: (skip 5, take 10) means return results 6-15

public int Skip { get; set; }

Property Value

int

Take

How many results to return

public int Take { get; set; }

Property Value

int