ParseQueryTWhereEndsWith Method Parse
Adds a constraint for finding string values that end with a provided string. This will be slow for large data sets.

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

public ParseQuery<T> WhereEndsWith(
	string key,
	string suffix
)

Parameters

key
Type: SystemString
The key that the string to match is stored in.
suffix
Type: SystemString
The substring that the value must end with.

Return Value

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

Reference