Click or drag to resize
QueryGetOperator Method (String)
Parse the specified string operator into a value of the Operator enum.

Namespace: Rally.RestApi
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public static QueryOperator GetOperator(
	string op
)

Parameters

op
Type: SystemString
The operator to translate

Return Value

Type: QueryOperator
The matching Operator value
Examples
C#
Query.Operator operatorValue = Query.GetOperator("equals");
See Also