1 type derived from ContextQuery
System.Xml (1)
System\Xml\XPath\Internal\AbsoluteQuery.cs (1)
15internal sealed class AbsoluteQuery : ContextQuery {
4 instantiations of ContextQuery
System.Xml (4)
System\Xml\XPath\Internal\ContextQuery.cs (1)
47public override XPathNodeIterator Clone() { return new ContextQuery(this); }
System\Xml\XPath\Internal\QueryBuilder.cs (3)
76qyGrandInput = new ContextQuery(); 94qyInput = new ContextQuery(); 252firstInput.qyInput = new ContextQuery();
3 references to ContextQuery
System.Xml (3)
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
106if (qyInput.GetType() != typeof(ContextQuery)) {
System\Xml\XPath\Internal\ContextQuery.cs (1)
20protected ContextQuery(ContextQuery other) : base(other) {
System\Xml\XPath\Internal\QueryBuilder.cs (1)
251if (! (parent is ContextQuery)) { // we don't need to wrap filter with MergeFilterQuery when cardinality is parent <: ?