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

◆ ValueType

override Type System.Xml.XmlBaseReader.ValueType
getinherited

Definition at line 1263 of file XmlBaseReader.cs.

1264 {
1265 get
1266 {
1267 if (_value == null && _node.QNameType == QNameType.Normal)
1268 {
1270 if (_node.IsAtomicValue)
1271 {
1272 return type;
1273 }
1274 if (type == typeof(byte[]))
1275 {
1276 return type;
1277 }
1278 }
1279 return typeof(string);
1280 }
1281 }