A MatchAllDocsQueryNode indicates that a query node tree or subtree will match all documents if executed in the index.
Inheritance: QueryNodeImpl
Example #1
0
        public override IQueryNode CloneTree()
        {
            MatchAllDocsQueryNode clone = (MatchAllDocsQueryNode)base.CloneTree();

            // nothing to clone

            return(clone);
        }