Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaAnnotated.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("annotation", typeof(XmlSchemaAnnotation))]
28 {
29 get
30 {
31 return _annotation;
32 }
33 set
34 {
36 }
37 }
38
39 [XmlAnyAttribute]
41 {
42 get
43 {
44 return _moreAttributes;
45 }
46 set
47 {
49 }
50 }
51
52 [XmlIgnore]
53 internal override string? IdAttribute
54 {
55 get
56 {
57 return Id;
58 }
59 set
60 {
61 Id = value;
62 }
63 }
64
69
70 internal override void AddAnnotation(XmlSchemaAnnotation annotation)
71 {
72 _annotation = annotation;
73 }
74}
override void AddAnnotation(XmlSchemaAnnotation annotation)
override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)