Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaComplexContent.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
6{
8
9 private bool _isMixed;
10
11 private bool _hasMixedAttribute;
12
13 [XmlAttribute("mixed")]
14 public bool IsMixed
15 {
16 get
17 {
18 return _isMixed;
19 }
20 set
21 {
23 _hasMixedAttribute = true;
24 }
25 }
26
29 public override XmlSchemaContent? Content
30 {
31 get
32 {
33 return _content;
34 }
35 set
36 {
38 }
39 }
40
41 [XmlIgnore]
43}