Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlILIndex.cs
Go to the documentation of this file.
4
6
8public sealed class XmlILIndex
9{
11
16
17 public void Add(string key, XPathNavigator navigator)
18 {
20 {
22 value.AddClone(navigator);
24 }
25 else if (!navigator.IsSamePosition(value[value.Count - 1]))
26 {
27 value.AddClone(navigator);
28 }
29 }
30
32 {
34 {
35 return new XmlQueryNodeSequence();
36 }
37 return value;
38 }
39}
bool TryGetValue(TKey key, [MaybeNullWhen(false)] out TValue value)
void Add(TKey key, TValue value)
readonly Dictionary< string, XmlQueryNodeSequence > _table
Definition XmlILIndex.cs:10
XmlQueryNodeSequence Lookup(string key)
Definition XmlILIndex.cs:31
void Add(string key, XPathNavigator navigator)
Definition XmlILIndex.cs:17