| QueryGetOperator Method (String) | 
          
        
        
        
            Parse the specified string operator into
            a value of the Operator enum.
            
         
        Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntaxpublic static QueryOperator GetOperator(
	string op
)
Public Shared Function GetOperator ( 
	op As String
) As QueryOperator
public:
static QueryOperator GetOperator(
	String^ op
)
static member GetOperator : 
        op : string -> QueryOperator 
Parameters
- op
 - Type: SystemString
The operator to translate 
Return Value
Type: 
QueryOperatorThe matching Operator value
ExamplesQuery.Operator operatorValue = Query.GetOperator("equals");
See Also