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