ParseQueryTLimit Method Parse
Controls the maximum number of results that are returned. Setting a negative limit denotes retrieval without a limit. Chaining multiple limits results in the last limit specified being used. The default limit is 100, with a maximum of 1000 results being returned at a time.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public ParseQuery<T> Limit(
	int count
)

Parameters

count
Type: SystemInt32
The maximum number of results to return.

Return Value

Type: ParseQueryT
A new query with the additional constraint.
See Also

Reference