Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetNamespaceListSymbols()

ICollection System.Xml.Schema.SymbolsDictionary.GetNamespaceListSymbols ( NamespaceList list)
inline

Definition at line 121 of file SymbolsDictionary.cs.

122 {
124 foreach (XmlQualifiedName key in _names.Keys)
125 {
126 if (key != XmlQualifiedName.Empty && list.Allows(key))
127 {
128 arrayList.Add(_names[key]);
129 }
130 }
131 if (_wildcards != null)
132 {
133 foreach (string key2 in _wildcards.Keys)
134 {
135 if (list.Allows(key2))
136 {
138 }
139 }
140 }
141 if (list.Type == NamespaceList.ListType.Any || list.Type == NamespaceList.ListType.Other)
142 {
143 arrayList.Add(_last);
144 }
145 return arrayList;
146 }
virtual ICollection Keys
Definition Hashtable.cs:532

References System.Xml.Schema.SymbolsDictionary._last, System.Xml.Schema.SymbolsDictionary._names, System.Xml.Schema.SymbolsDictionary._wildcards, System.Xml.Dictionary, System.Xml.XmlQualifiedName.Empty, System.key, System.Collections.Hashtable.Keys, and System.list.