Parse the specified string into a query
            
         
        Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntaxpublic static Query Parse(
	string query
)
Public Shared Function Parse ( 
	query As String
) As Query
public:
static Query^ Parse(
	String^ query
)
static member Parse : 
        query : string -> Query 
Parameters
- query
 - Type: SystemString
The query string to be parsed 
Return Value
Type: 
QueryA query object, or null if the string could not be parsed
ExamplesQuery query = Query.Parse("(Name = Value)");
See Also