Hapikit.Templates.UriTemplate.GetOperator C# (CSharp) Method

GetOperator() private static method

private static GetOperator ( char operatorIndicator ) : OperatorInfo
operatorIndicator char
return OperatorInfo
            private static OperatorInfo GetOperator(char operatorIndicator)
            {
                OperatorInfo op;
                switch (operatorIndicator)
                {

                    case '+':
                    case ';':
                    case '/':
                    case '#':
                    case '&':
                    case '?':
                    case '.':
                        op = _Operators[operatorIndicator];
                        break;

                    default:
                        op = _Operators['\0'];
                        break;
                }
                return op;
            }