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

◆ VerifyTables()

void System.Xml.Schema.XmlSchemaSet.VerifyTables ( )
inlineprivate

Definition at line 1217 of file XmlSchemaSet.cs.

1218 {
1219 if (elements == null)
1220 {
1221 elements = new XmlSchemaObjectTable();
1222 }
1223 if (attributes == null)
1224 {
1225 attributes = new XmlSchemaObjectTable();
1226 }
1227 if (schemaTypes == null)
1228 {
1229 schemaTypes = new XmlSchemaObjectTable();
1230 }
1231 if (substitutionGroups == null)
1232 {
1233 substitutionGroups = new XmlSchemaObjectTable();
1234 }
1235 }
XmlSchemaObjectTable elements
XmlSchemaObjectTable attributes
XmlSchemaObjectTable schemaTypes
XmlSchemaObjectTable substitutionGroups

References System.Xml.Schema.XmlSchemaSet.attributes, System.Xml.Schema.XmlSchemaSet.elements, System.Xml.Schema.XmlSchemaSet.schemaTypes, and System.Xml.Schema.XmlSchemaSet.substitutionGroups.

Referenced by System.Xml.Schema.XmlSchemaSet.CopyFromCompiledSet(), and System.Xml.Schema.XmlSchemaSet.RemoveSchemaFromGlobalTables().