Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaAnnotation.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
6{
7 private string _id;
8
10
12
13 [XmlAttribute("id", DataType = "ID")]
14 public string? Id
15 {
16 get
17 {
18 return _id;
19 }
20 set
21 {
22 _id = value;
23 }
24 }
25
26 [XmlElement("documentation", typeof(XmlSchemaDocumentation))]
29
30 [XmlAnyAttribute]
32 {
33 get
34 {
35 return _moreAttributes;
36 }
37 set
38 {
40 }
41 }
42
43 [XmlIgnore]
44 internal override string? IdAttribute
45 {
46 get
47 {
48 return Id;
49 }
50 set
51 {
52 Id = value;
53 }
54 }
55
60}
readonly XmlSchemaObjectCollection _items
override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)