3 writes to contextNode
System.Xml (3)
System\Xml\XPath\Internal\AbsoluteQuery.cs (1)
20
base.
contextNode
= context.Current.Clone();
System\Xml\XPath\Internal\ContextQuery.cs (2)
21
this.
contextNode
= other.contextNode; // Don't need to clone here
30
contextNode
= context.Current; // We don't clone here. Because we never move it.
4 references to contextNode
System.Xml (4)
System\Xml\XPath\Internal\AbsoluteQuery.cs (1)
21
base.
contextNode
.MoveToRoot();
System\Xml\XPath\Internal\ContextQuery.cs (3)
21
this.contextNode = other.
contextNode
; // Don't need to clone here
27
public override XPathNavigator Current { get { return
contextNode
; } }
38
return
contextNode
;