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