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

◆ XmlAtomicValue() [8/9]

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

Definition at line 345 of file XmlAtomicValue.cs.

346 {
347 if (value == null)
348 {
349 throw new ArgumentNullException("value");
350 }
351 if (xmlType == null)
352 {
353 throw new ArgumentNullException("xmlType");
354 }
355 _xmlType = xmlType;
356 _objVal = value;
357 }
readonly XmlSchemaType _xmlType

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