Beispiel #1
0
        private string GetKeywordString(QueryKeyword keyword)
        {
            switch (keyword)
            {
            case QueryKeyword.And:
                return("&&");

            case QueryKeyword.Or:
                return("||");

            default:
                throw new InvalidOperationException("Invalid keyword.");
            }
        }
Beispiel #2
0
 public Task <StatusTextResponse <string> > Query(
     QueryKeyword keyword = QueryKeyword.None,
     CancellationToken cancellationToken = new CancellationToken())
 {
     throw new NotImplementedException();
 }