Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaSimpleTypeList.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
6{
8
10
12
13 [XmlAttribute("itemType")]
15 {
16 get
17 {
18 return _itemTypeName;
19 }
20 set
21 {
23 }
24 }
25
26 [XmlElement("simpleType", typeof(XmlSchemaSimpleType))]
27 public XmlSchemaSimpleType? ItemType
28 {
29 get
30 {
31 return _itemType;
32 }
33 set
34 {
36 }
37 }
38
39 [XmlIgnore]
41 {
42 get
43 {
44 return _baseItemType;
45 }
46 set
47 {
49 }
50 }
51
58}
static readonly XmlQualifiedName Empty