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

◆ XmlAtomicValue() [6/9]

System.Xml.Schema.XmlAtomicValue.XmlAtomicValue ( XmlSchemaType xmlType,
string value )
inlinepackage

Definition at line 312 of file XmlAtomicValue.cs.

313 {
314 if (value == null)
315 {
316 throw new ArgumentNullException("value");
317 }
318 if (xmlType == null)
319 {
320 throw new ArgumentNullException("xmlType");
321 }
322 _xmlType = xmlType;
323 _objVal = value;
324 }
readonly XmlSchemaType _xmlType

References System.Xml.Schema.XmlAtomicValue._objVal, System.Xml.Schema.XmlAtomicValue._xmlType, and System.value.