3 writes to contextNode
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\AbsoluteQuery.cs (1)
20base.contextNode = context.Current.Clone();
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (2)
22this.contextNode = other.contextNode; // Don't need to clone here 33contextNode = context.Current; // We don't clone here. Because we never move it.
4 references to contextNode
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\AbsoluteQuery.cs (1)
21base.contextNode.MoveToRoot();
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (3)
22this.contextNode = other.contextNode; // Don't need to clone here 29public override XPathNavigator Current { get { return contextNode; } } 43return contextNode;