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

IsVarNameChar() private static method

private static IsVarNameChar ( char c ) : bool
c char
return bool
            private static bool IsVarNameChar(char c)
            {
                return ((c >= 'A' && c <= 'z') //Alpha
                        || (c >= '0' && c <= '9') // Digit
                        || c == '_'
                        || c == '%'
                        || c == '.');
            }