2 writes to nav
System.Private.Xml (2)
System\Xml\XPath\Internal\XPathAxisIterator.cs (2)
21this.nav = nav; 41this.nav = it.nav.Clone();
14 references to nav
System.Private.Xml (14)
System\Xml\XPath\Internal\XPathAncestorIterator.cs (1)
26while (nav.MoveToParent())
System\Xml\XPath\Internal\XPathAxisIterator.cs (8)
41this.nav = it.nav.Clone(); 52get { return nav; } 70type == nav.NodeType || 73nav.NodeType == XPathNodeType.Whitespace || 74nav.NodeType == XPathNodeType.SignificantWhitespace 81nav.NodeType == XPathNodeType.Element && 82(name.Length == 0 || name == nav.LocalName) && 83(uri == nav.NamespaceURI)
System\Xml\XPath\Internal\XPathChildIterator.cs (2)
21while ((first) ? nav.MoveToFirstChild() : nav.MoveToNext())
System\Xml\XPath\Internal\XPathDescendantIterator.cs (3)
45if (nav.MoveToFirstChild()) 62if (nav.MoveToNext()) 66nav.MoveToParent();