Description
The TokenizedPagingParams allows you to create data transfer objects used to pass tokenized parameters for queries.
Important points
- The page is defined by two parameters:
- token: token that defines a starting point for the search.
 - take: parameter sets how many items to return in a page.
 
 - Additionally, the optional total parameter tells to return the total number of items in the query.
 - However, not all implementations support the total parameter because its generation may lead to severe performance implications.
 - In general, this class can be used for complex paging scenarios, like paging across multiple databases where the previous state is encoded in a token. The token is usually retrieved from the previous response. The initial request shall go with token == null
 
Constructors
Creates a new instance of this class and sets its values.
publicTokenizedPagingParams(string token = null, int take=default(int), bool total = default(bool))
- token: string - token that defines a starting point for the search.
 - take: int - the number of items to return.
 - total: bool - true to return the total number of items.
 
Properties
Token
Start token
publicstring Token { get; set; }
Take
Number of items to return.
publicint Take { get; set; }
Total
Flag used to define whether the total number of items must be returned or not.
publicbool Total { get; set; }
Instance methods
GetTake
Gets the number of items to return in a page.
publicint GetTake(int maxTake)
- maxTake: int - maximum number of items to return.
 - returns: int - number of items to return.
 
Static methods
FromMap
Creates a new TokenizedPagingParams object and sets its parameters from the specified map.
public staticTokenizedPagingParams FromMap(AnyValueMap map)
- map: AnyValueMap - AnyValueMap object used to initialize this TokenizedPagingParams object.
 - returns: TokenizedPagingParams - newly created TokenizedPagingParams object.
 
Creates a new TokenizedPagingParams object and sets its parameters from the specified map.
public staticTokenizedPagingParams FromMap(StringValueMap map)
- map: StringValueMap - StringValueMap object used to initialize this TokenizedPagingParams object.
 - returns: TokenizedPagingParams - newly created TokenizedPagingParams object.
 
FromTuples
Creates a new TokenizedPagingParams object from a list of key-value pairs called tuples.
public staticTokenizedPagingParams FromTuples(params object[] tuples)
- tuples: params object[] - list of values where odd elements are keys and the following even elements are values.
 - returns: TokenizedPagingParams - newly created TokenizedPagingParams object.
 
FromValue
Converts a specified value into a TokenizedPagingParams object.
public staticTokenizedPagingParams FromValue(object value)
- value: object - value to be converted.
 - returns: TokenizedPagingParams - newly created TokenizedPagingParams object.
 
Examples
var filter = FilterParams.FromTuples("type", "Type1");
var paging = new PagingParams(0, 100);
var sorting = new SortingParams(new SortField("create_time", true));
myDataClient.GetDataByFilter(filter, paging, sorting);