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