3 writes to contextNode
System.Private.Xml (3)
System\Xml\XPath\Internal\AbsoluteQuery.cs (1)
17base.contextNode = context.Current.Clone();
System\Xml\XPath\Internal\ContextQuery.cs (2)
19this.contextNode = other.contextNode; // Don't need to clone here 31contextNode = 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)
18base.contextNode.MoveToRoot();
System\Xml\XPath\Internal\ContextQuery.cs (3)
19this.contextNode = other.contextNode; // Don't need to clone here 27public override XPathNavigator? Current { get { return contextNode; } } 41return contextNode;