예제 #1
0
        public void AddToken(SearchTokenType tokenType, string tokenValue)
        {
            var all = Tokens.ToList();

            all.Add(new SearchToken(tokenType, tokenValue));
            Tokens = all.ToArray();
        }
예제 #2
0
 public SearchToken(SearchTokenType tokenType, string tokenValue)
 {
     TokenType    = tokenType;
     RawTokenType = tokenType.ToString();
     TokenValue   = tokenValue;
 }