5 instantiations of DocumentOrderQuery
System.Xml (5)
System\Xml\XPath\Internal\DocumentorderQuery.cs (1)
34public override XPathNodeIterator Clone() { return new DocumentOrderQuery(this); }
System\Xml\XPath\Internal\QueryBuilder.cs (4)
81result = new DocumentOrderQuery(result); 124result = new DocumentOrderQuery(result); 135result = new DocumentOrderQuery(result); 151result = new DocumentOrderQuery(result);
3 references to DocumentOrderQuery
System.Xml (3)
System\Xml\XPath\Internal\DocumentorderQuery.cs (1)
17private DocumentOrderQuery(DocumentOrderQuery other) : base(other) { }
System\Xml\XPath\Internal\QueryBuilder.cs (2)
230if ((props & Props.PosFilter) != 0 && qyInput is DocumentOrderQuery) { 231qyInput = ((DocumentOrderQuery)qyInput).input;