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

◆ Namespace()

static string System.Xml.Serialization.XmlSchemaObjectComparer.Namespace ( XmlSchemaObject o)
inlinestaticpackage

Definition at line 98 of file XmlSchemaObjectComparer.cs.

99 {
100 while (o != null && !(o is XmlSchema))
101 {
102 o = o.Parent;
103 }
104 if (o != null)
105 {
106 return ((XmlSchema)o).TargetNamespace;
107 }
108 return "";
109 }

References System.Xml.Dictionary.