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