Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaImport.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
6{
7 private string _ns;
8
10
11 [XmlAttribute("namespace", DataType = "anyURI")]
12 public string? Namespace
13 {
14 get
15 {
16 return _ns;
17 }
18 set
19 {
20 _ns = value;
21 }
22 }
23
24 [XmlElement("annotation", typeof(XmlSchemaAnnotation))]
26 {
27 get
28 {
29 return _annotation;
30 }
31 set
32 {
34 }
35 }
36
38 {
40 }
41
42 internal override void AddAnnotation(XmlSchemaAnnotation annotation)
43 {
44 _annotation = annotation;
45 }
46}
override void AddAnnotation(XmlSchemaAnnotation annotation)