Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaIdentityConstraint.cs
Go to the documentation of this file.
2
3namespace System.Xml.Schema;
4
6{
7 private string _name;
8
10
12
14
16
17 [XmlAttribute("name")]
18 public string? Name
19 {
20 get
21 {
22 return _name;
23 }
24 set
25 {
26 _name = value;
27 }
28 }
29
30 [XmlElement("selector", typeof(XmlSchemaXPath))]
32 {
33 get
34 {
35 return _selector;
36 }
37 set
38 {
40 }
41 }
42
45
46 [XmlIgnore]
48
49 [XmlIgnore]
51 {
52 get
53 {
55 }
56 set
57 {
59 }
60 }
61
62 [XmlIgnore]
63 internal override string? NameAttribute
64 {
65 get
66 {
67 return Name;
68 }
69 set
70 {
71 Name = value;
72 }
73 }
74
79}
static readonly XmlQualifiedName Empty