Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaSequence.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
6{
8
12 [XmlElement("sequence", typeof(XmlSchemaSequence))]
14 public override XmlSchemaObjectCollection Items => _items;
15
16 internal override bool IsEmpty
17 {
18 get
19 {
20 if (!base.IsEmpty)
21 {
22 return _items.Count == 0;
23 }
24 return true;
25 }
26 }
27
29 {
31 }
32}
override void SetItems(XmlSchemaObjectCollection newItems)
XmlSchemaObjectCollection _items