Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Namespace

string? System.Xml.Schema.XmlSchemaAnyAttribute.Namespace
getset

Definition at line 15 of file XmlSchemaAnyAttribute.cs.

16 {
17 get
18 {
19 string text = _ns;
20 if (text == null)
21 {
22 NamespaceList? namespaceList = NamespaceList;
23 if (namespaceList == null)
24 {
25 return null;
26 }
27 text = namespaceList.ToString();
28 }
29 return text;
30 }
31 set
32 {
33 _ns = value;
34 }
35 }