2 writes to nav
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAxisIterator.cs (2)
25this.nav = nav; 45this.nav = it.nav.Clone();
14 references to nav
dotnet-svcutil-lib (14)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAncestorIterator.cs (1)
31while (nav.MoveToParent())
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathAxisIterator.cs (8)
45this.nav = it.nav.Clone(); 56get { return nav; } 74type == nav.NodeType || 77nav.NodeType == XPathNodeType.Whitespace || 78nav.NodeType == XPathNodeType.SignificantWhitespace 85nav.NodeType == XPathNodeType.Element && 86(name.Length == 0 || name == nav.LocalName) && 87(uri == nav.NamespaceURI)
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathChildIterator.cs (2)
26while ((first) ? nav.MoveToFirstChild() : nav.MoveToNext())
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathDescendantIterator.cs (3)
40if (nav.MoveToFirstChild()) 52if (nav.MoveToNext()) 56nav.MoveToParent();