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