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

◆ GetExternalSchemasList()

void System.Xml.Schema.XmlSchema.GetExternalSchemasList ( IList extList,
XmlSchema schema )
inlinepackage

Definition at line 639 of file XmlSchema.cs.

640 {
641 if (extList.Contains(schema))
642 {
643 return;
644 }
645 extList.Add(schema);
646 for (int i = 0; i < schema.Includes.Count; i++)
647 {
648 XmlSchemaExternal xmlSchemaExternal = (XmlSchemaExternal)schema.Includes[i];
649 if (xmlSchemaExternal.Schema != null)
650 {
652 }
653 }
654 }
void GetExternalSchemasList(IList extList, XmlSchema schema)
Definition XmlSchema.cs:639

References System.Xml.Dictionary, and System.Xml.Schema.XmlSchema.GetExternalSchemasList().

Referenced by System.Xml.Schema.XmlSchema.GetExternalSchemasList().