コード例 #1
0
 public override void FillQueryTokens(List <QueryToken> list)
 {
     ValueProvider.FillQueryTokens(list);
     AnyBlock.FillQueryTokens(list);
     if (NotAnyBlock != null)
     {
         NotAnyBlock.FillQueryTokens(list);
     }
 }
コード例 #2
0
        public override void FillTokens(List <QueryToken> tokens)
        {
            ValueProvider.FillQueryTokens(tokens);

            this.ForeachBlock !.FillTokens(tokens);
        }
コード例 #3
0
 public override void FillTokens(List <QueryToken> tokens)
 {
     ValueProvider.FillQueryTokens(tokens);
 }
コード例 #4
0
 public override void FillQueryTokens(List <QueryToken> list)
 {
     ValueProvider.FillQueryTokens(list);
     Block.FillQueryTokens(list);
 }