public void AddToken(SearchTokenType tokenType, string tokenValue) { var all = Tokens.ToList(); all.Add(new SearchToken(tokenType, tokenValue)); Tokens = all.ToArray(); }
public SearchToken(SearchTokenType tokenType, string tokenValue) { TokenType = tokenType; RawTokenType = tokenType.ToString(); TokenValue = tokenValue; }