Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
NamespaceIterator.cs
Go to the documentation of this file.
3
5
7public struct NamespaceIterator
8{
10
12
14
15 public void Create(XPathNavigator context)
16 {
19 {
20 return;
21 }
22 do
23 {
24 if (context.LocalName.Length != 0 || context.Value.Length != 0)
25 {
26 _navStack.Push(context.Clone());
27 }
28 }
29 while (context.MoveToNextNamespace(XPathNamespaceScope.All));
30 context.MoveToParent();
31 }
32
33 public bool MoveNext()
34 {
36 {
37 return false;
38 }
40 return true;
41 }
42}
bool MoveToFirstNamespace(XPathNamespaceScope namespaceScope)
bool MoveToNextNamespace(XPathNamespaceScope namespaceScope)