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

◆ ImportAllCompiledSchemas()

void System.Xml.Schema.Compiler.ImportAllCompiledSchemas ( XmlSchemaSet schemaSet)
inlinepackage

Definition at line 165 of file Compiler.cs.

166 {
167 SortedList sortedSchemas = schemaSet.SortedSchemas;
168 for (int i = 0; i < sortedSchemas.Count; i++)
169 {
170 XmlSchema xmlSchema = (XmlSchema)sortedSchemas.GetByIndex(i);
171 if (xmlSchema.IsCompiledBySet)
172 {
174 }
175 }
176 }
void Prepare(XmlSchema schema, bool cleanup)
Definition Compiler.cs:54

References System.Collections.Generic.Dictionary< TKey, TValue >.Count, and System.Xml.Schema.Compiler.Prepare().