5 instantiations of DocumentOrderQuery
System.Private.Xml (5)
System\Xml\XPath\Internal\DocumentorderQuery.cs (1)
31public override XPathNodeIterator Clone() { return new DocumentOrderQuery(this); }
System\Xml\XPath\Internal\QueryBuilder.cs (4)
92result = new DocumentOrderQuery(result); 146result = new DocumentOrderQuery(result); 161result = new DocumentOrderQuery(result); 178result = new DocumentOrderQuery(result);
3 references to DocumentOrderQuery
System.Private.Xml (3)
System\Xml\XPath\Internal\DocumentorderQuery.cs (1)
11private DocumentOrderQuery(DocumentOrderQuery other) : base(other) { }
System\Xml\XPath\Internal\QueryBuilder.cs (2)
268if ((props & Props.PosFilter) != 0 && qyInput is DocumentOrderQuery) 270qyInput = ((DocumentOrderQuery)qyInput).input;