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

◆ Name

string System.Xml.Serialization.XmlAnyElementAttribute.Name
getset

Definition at line 16 of file XmlAnyElementAttribute.cs.

17 {
18 get
19 {
20 if (_name != null)
21 {
22 return _name;
23 }
24 return string.Empty;
25 }
27 set
28 {
29 _name = value;
30 }
31 }