Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SchemaNotation.cs
Go to the documentation of this file.
1namespace System.Xml.Schema;
2
3internal sealed class SchemaNotation
4{
5 private readonly XmlQualifiedName _name;
6
7 private string _systemLiteral;
8
9 private string _pubid;
10
12
13 internal string SystemLiteral
14 {
15 get
16 {
17 return _systemLiteral;
18 }
19 set
20 {
22 }
23 }
24
25 internal string Pubid
26 {
27 get
28 {
29 return _pubid;
30 }
31 set
32 {
33 _pubid = value;
34 }
35 }
36
38 {
39 _name = name;
40 }
41}
readonly XmlQualifiedName _name
SchemaNotation(XmlQualifiedName name)