Click or drag to resize
IFulltextQueryTDocumentLimit Method
Limits the results returned by this query.

Namespace: SphinxConnector.FluentApi
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 3.12.6
Syntax
IFulltextQuery<TDocument> Limit(
	int skip,
	int take
)

Parameters

skip
Type: SystemInt32
The number of results to skip.
take
Type: SystemInt32
The maximum number of results to return.

Return Value

Type: IFulltextQueryTDocument
The current instance.
Exceptions
ExceptionCondition
ArgumentExceptionOccurs when skip is less than zero or take is less or equal to zero.
See Also