QueryGetOperator Method (QueryOperator) |
Get the string version of the specified operator
Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntaxpublic static string GetOperator(
QueryOperator op
)
Public Shared Function GetOperator (
op As QueryOperator
) As String
public:
static String^ GetOperator(
QueryOperator op
)
static member GetOperator :
op : QueryOperator -> string
Parameters
- op
- Type: Rally.RestApiQueryOperator
The operator to translate
Return Value
Type:
StringThe string version of the specified operator
Examplesstring operatorValue = Query.GetOperator(Query.Operator.Contains);
See Also