Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaNotation.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
6{
7 private string _name;
8
9 private string _publicId;
10
11 private string _systemId;
12
14
15 [XmlAttribute("name")]
16 public string? Name
17 {
18 get
19 {
20 return _name;
21 }
22 set
23 {
24 _name = value;
25 }
26 }
27
28 [XmlAttribute("public")]
29 public string? Public
30 {
31 get
32 {
33 return _publicId;
34 }
35 set
36 {
38 }
39 }
40
41 [XmlAttribute("system")]
42 public string? System
43 {
44 get
45 {
46 return _systemId;
47 }
48 set
49 {
51 }
52 }
53
54 [XmlIgnore]
56 {
57 get
58 {
59 return _qname;
60 }
61 set
62 {
63 _qname = value;
64 }
65 }
66
67 [XmlIgnore]
68 internal override string? NameAttribute
69 {
70 get
71 {
72 return Name;
73 }
74 set
75 {
76 Name = value;
77 }
78 }
79}
static readonly XmlQualifiedName Empty