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