Method Slice
Slice(string, int)
Adds a slice to be included in the results.
public FieldsBuilder Slice(string name, int size)
Parameters
namestringThe name of the field to slice.
sizeintThe size of the slice (negative sizes are taken from the end).
Returns
- FieldsBuilder
The builder (so method calls can be chained).
Slice(string, int, int)
Adds a slice to be included in the results.
public FieldsBuilder Slice(string name, int skip, int limit)
Parameters
namestringThe name of the field to slice.
skipintThe number of values to skip.
limitintThe number of values to extract.
Returns
- FieldsBuilder
The builder (so method calls can be chained).