3 writes to contextNode
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\AbsoluteQuery.cs (1)
20
base.
contextNode
= context.Current.Clone();
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (2)
22
this.
contextNode
= other.contextNode; // Don't need to clone here
33
contextNode
= 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)
21
base.
contextNode
.MoveToRoot();
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\ContextQuery.cs (3)
22
this.contextNode = other.
contextNode
; // Don't need to clone here
29
public override XPathNavigator Current { get { return
contextNode
; } }
43
return
contextNode
;