Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSchemaCollectionNode.cs
Go to the documentation of this file.
1namespace System.Xml.Schema;
2
3internal sealed class XmlSchemaCollectionNode
4{
5 private string _namespaceUri;
6
8
10
11 internal string NamespaceURI
12 {
13 get
14 {
15 return _namespaceUri;
16 }
17 set
18 {
20 }
21 }
22
24 {
25 get
26 {
27 return _schemaInfo;
28 }
29 set
30 {
32 }
33 }
34
35 internal XmlSchema Schema
36 {
37 get
38 {
39 return _schema;
40 }
41 set
42 {
43 _schema = value;
44 }
45 }
46}