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

◆ AppendChildWithoutRef()

void System.Data.XmlTreeGen.AppendChildWithoutRef ( XmlElement node,
string Namespace,
XmlElement el,
string refString )
inlinepackage

Definition at line 1366 of file XmlTreeGen.cs.

1367 {
1368 XmlElement schema = GetSchema(Namespace);
1369 if (FindTypeNode(schema, el.GetAttribute("name")) == null)
1370 {
1371 schema.AppendChild(el);
1372 }
1373 }
XmlElement GetSchema(string NamespaceURI)
XmlElement FindTypeNode(XmlElement node, string strType)

References System.Xml.Dictionary, System.Data.XmlTreeGen.FindTypeNode(), and System.Data.XmlTreeGen.GetSchema().

Referenced by System.Data.XmlTreeGen.SchemaTree().