11 overrides of MatchNode
System.Xml (11)
System\Xml\XPath\Internal\AttributeQuery.cs (1)
51public override XPathNavigator MatchNode(XPathNavigator context) {
System\Xml\XPath\Internal\ChildrenQuery.cs (1)
52public sealed override XPathNavigator MatchNode(XPathNavigator context) {
System\Xml\XPath\Internal\ContextQuery.cs (1)
43public override XPathNavigator MatchNode(XPathNavigator current) {
System\Xml\XPath\Internal\DescendantBaseQuery.cs (1)
27public override XPathNavigator MatchNode(XPathNavigator context) {
System\Xml\XPath\Internal\DocumentorderQuery.cs (1)
30public override XPathNavigator MatchNode(XPathNavigator context) {
System\Xml\XPath\Internal\FilterQuery.cs (1)
69public override XPathNavigator MatchNode(XPathNavigator current) {
System\Xml\XPath\Internal\ForwardPositionQuery.cs (1)
32public override XPathNavigator MatchNode(XPathNavigator context) {
System\Xml\XPath\Internal\FunctionQuery.cs (1)
76public override XPathNavigator MatchNode(XPathNavigator navigator) {
System\Xml\XPath\Internal\IdQuery.cs (1)
57public override XPathNavigator MatchNode(XPathNavigator context) {
System\Xml\XPath\Internal\MergeFilterQuery.cs (1)
44public override XPathNavigator MatchNode(XPathNavigator current) {
System\Xml\XPath\Internal\UnionExpr.cs (1)
120public override XPathNavigator MatchNode(XPathNavigator xsltContext) {
12 references to MatchNode
System.Xml (12)
System\Xml\XPath\Internal\AttributeQuery.cs (1)
56return qyInput.MatchNode(temp);
System\Xml\XPath\Internal\ChildrenQuery.cs (1)
57return qyInput.MatchNode(temp);
System\Xml\XPath\Internal\DescendantBaseQuery.cs (2)
35if ((result = qyInput.MatchNode(context)) != null) { 42if ((result = qyInput.MatchNode(anc)) != null) {
System\Xml\XPath\Internal\DocumentorderQuery.cs (1)
31return input.MatchNode(context);
System\Xml\XPath\Internal\FilterQuery.cs (1)
74context = qyInput.MatchNode(current);
System\Xml\XPath\Internal\ForwardPositionQuery.cs (1)
33return input.MatchNode(context);
System\Xml\XPath\Internal\MergeFilterQuery.cs (2)
45XPathNavigator context = child.MatchNode(current); 49context = input.MatchNode(context);
System\Xml\XPath\Internal\UnionExpr.cs (2)
122XPathNavigator result = qy1.MatchNode(xsltContext); 126return qy2.MatchNode(xsltContext);
System\Xml\XPath\XPathNavigator.cs (1)
1069return query.MatchNode(this) != null;