11 overrides of MatchNode
System.Private.Xml (11)
System\Xml\XPath\Internal\AttributeQuery.cs (1)
58public override XPathNavigator? MatchNode(XPathNavigator? context)
System\Xml\XPath\Internal\ChildrenQuery.cs (1)
55public sealed override XPathNavigator? MatchNode(XPathNavigator? context)
System\Xml\XPath\Internal\ContextQuery.cs (1)
46public override XPathNavigator? MatchNode(XPathNavigator? current)
System\Xml\XPath\Internal\DescendantBaseQuery.cs (1)
26public override XPathNavigator? MatchNode(XPathNavigator? context)
System\Xml\XPath\Internal\DocumentorderQuery.cs (1)
26public override XPathNavigator? MatchNode(XPathNavigator? context)
System\Xml\XPath\Internal\FilterQuery.cs (1)
75public override XPathNavigator? MatchNode(XPathNavigator? current)
System\Xml\XPath\Internal\ForwardPositionQuery.cs (1)
30public override XPathNavigator? MatchNode(XPathNavigator? context)
System\Xml\XPath\Internal\FunctionQuery.cs (1)
96public override XPathNavigator? MatchNode(XPathNavigator? navigator)
System\Xml\XPath\Internal\IdQuery.cs (1)
58public override XPathNavigator? MatchNode(XPathNavigator? context)
System\Xml\XPath\Internal\MergeFilterQuery.cs (1)
46public override XPathNavigator? MatchNode(XPathNavigator? current)
System\Xml\XPath\Internal\UnionExpr.cs (1)
142public override XPathNavigator? MatchNode(XPathNavigator? xsltContext)
14 references to MatchNode
System.Private.Xml (14)
System\Xml\XPath\Internal\AttributeQuery.cs (1)
67return qyInput.MatchNode(temp);
System\Xml\XPath\Internal\ChildrenQuery.cs (1)
64return qyInput.MatchNode(temp);
System\Xml\XPath\Internal\DescendantBaseQuery.cs (2)
39if ((result = qyInput.MatchNode(context)) != null) 48if ((result = qyInput.MatchNode(anc)) != null)
System\Xml\XPath\Internal\DocumentorderQuery.cs (1)
28return input.MatchNode(context);
System\Xml\XPath\Internal\FilterQuery.cs (1)
82context = qyInput.MatchNode(current);
System\Xml\XPath\Internal\ForwardPositionQuery.cs (1)
32return input.MatchNode(context);
System\Xml\XPath\Internal\MergeFilterQuery.cs (2)
48XPathNavigator? context = _child.MatchNode(current); 53context = input.MatchNode(context);
System\Xml\XPath\Internal\UnionExpr.cs (2)
146XPathNavigator? result = qy1.MatchNode(xsltContext); 151return qy2.MatchNode(xsltContext);
System\Xml\XPath\XPathNavigator.cs (1)
1211return query.MatchNode(this) != null;
System\Xml\Xsl\XsltOld\Processor.cs (1)
690bool result = query.MatchNode(context) != null;
System\Xml\Xsl\XsltOld\XsltCompileContext.cs (1)
357if (matchExpr.MatchNode(node) == null)