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

◆ Accessor

Accessor System.Xml.Serialization.AccessorMapping.Accessor
getpackageinherited

Definition at line 179 of file AccessorMapping.cs.

180 {
181 get
182 {
183 if (_xmlns != null)
184 {
185 return _xmlns;
186 }
187 if (_attribute != null)
188 {
189 return _attribute;
190 }
191 if (_elements != null && _elements.Length != 0)
192 {
193 return _elements[0];
194 }
195 return _text;
196 }
197 }