private string GetKeywordString(QueryKeyword keyword) { switch (keyword) { case QueryKeyword.And: return("&&"); case QueryKeyword.Or: return("||"); default: throw new InvalidOperationException("Invalid keyword."); } }
public Task <StatusTextResponse <string> > Query( QueryKeyword keyword = QueryKeyword.None, CancellationToken cancellationToken = new CancellationToken()) { throw new NotImplementedException(); }