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

◆ SetValue()

void System.Xml.Linq.XAttribute.SetValue ( object value)
inline

Definition at line 127 of file XAttribute.cs.

128 {
129 if (value == null)
130 {
131 throw new ArgumentNullException("value");
132 }
133 Value = XContainer.GetStringValue(value);
134 }

References System.Xml.Linq.XContainer.GetStringValue(), System.Xml.Linq.XAttribute.value, and System.Xml.Linq.XAttribute.Value.