Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ElementContentIterator.cs
Go to the documentation of this file.
3
5
8{
9 private string _localName;
10
11 private string _ns;
12
14
15 private bool _needFirst;
16
18
19 public void Create(XPathNavigator context, string localName, string ns)
20 {
22 _localName = localName;
23 _ns = ns;
24 _needFirst = true;
25 }
26
27 public bool MoveNext()
28 {
29 if (_needFirst)
30 {
32 return !_needFirst;
33 }
35 }
36}
virtual bool MoveToChild(string localName, string namespaceURI)
static XPathNavigator SyncToNavigator(XPathNavigator navigatorThis, XPathNavigator navigatorThat)
void Create(XPathNavigator context, string localName, string ns)