Click or drag to resize
QueryParse Method
Parse the specified string into a query

Namespace: Rally.RestApi
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public static Query Parse(
	string query
)

Parameters

query
Type: SystemString
The query string to be parsed

Return Value

Type: Query
A query object, or null if the string could not be parsed
Examples
C#
Query query = Query.Parse("(Name = Value)");
See Also