5 instantiations of DocumentOrderQuery
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DocumentOrderQuery.cs (1)
35public override XPathNodeIterator Clone() { return new DocumentOrderQuery(this); }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (4)
94result = new DocumentOrderQuery(result); 148result = new DocumentOrderQuery(result); 163result = new DocumentOrderQuery(result); 180result = new DocumentOrderQuery(result);
3 references to DocumentOrderQuery
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\DocumentOrderQuery.cs (1)
15private DocumentOrderQuery(DocumentOrderQuery other) : base(other) { }
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\querybuilder.cs (2)
270if ((props & Props.PosFilter) != 0 && qyInput is DocumentOrderQuery) 272qyInput = ((DocumentOrderQuery)qyInput).input;