Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaExternal.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
5public abstract class XmlSchemaExternal : XmlSchemaObject
6{
7 private string _location;
8
9 private Uri _baseUri;
10
12
13 private string _id;
14
16
18
19 [XmlAttribute("schemaLocation", DataType = "anyURI")]
20 public string? SchemaLocation
21 {
22 get
23 {
24 return _location;
25 }
26 set
27 {
29 }
30 }
31
32 [XmlIgnore]
33 public XmlSchema? Schema
34 {
35 get
36 {
37 return _schema;
38 }
39 set
40 {
41 _schema = value;
42 }
43 }
44
45 [XmlAttribute("id", DataType = "ID")]
46 public string? Id
47 {
48 get
49 {
50 return _id;
51 }
52 set
53 {
54 _id = value;
55 }
56 }
57
58 [XmlAnyAttribute]
60 {
61 get
62 {
63 return _moreAttributes;
64 }
65 set
66 {
68 }
69 }
70
71 [XmlIgnore]
72 internal Uri? BaseUri
73 {
74 get
75 {
76 return _baseUri;
77 }
78 set
79 {
81 }
82 }
83
84 [XmlIgnore]
85 internal override string? IdAttribute
86 {
87 get
88 {
89 return Id;
90 }
91 set
92 {
93 Id = value;
94 }
95 }
96
98 {
99 get
100 {
101 return _compositor;
102 }
103 set
104 {
106 }
107 }
108
113}
override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)