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

◆ GetEquivalentElements()

XmlSchemaElement[] System.Xml.Serialization.XmlSchemaImporter.GetEquivalentElements ( XmlSchemaElement element)
inlineprivate

Definition at line 1060 of file XmlSchemaImporter.cs.

1061 {
1063 foreach (XmlSchema item in base.Schemas.SchemaSet.Schemas())
1064 {
1065 for (int i = 0; i < item.Items.Count; i++)
1066 {
1067 object obj = item.Items[i];
1069 {
1071 if (!xmlSchemaElement.IsAbstract && xmlSchemaElement.SubstitutionGroup.Namespace == item.TargetNamespace && xmlSchemaElement.SubstitutionGroup.Name == element.Name)
1072 {
1074 }
1075 }
1076 }
1077 }
1079 }
void Add(TKey key, TValue value)

References System.Collections.Generic.Dictionary< TKey, TValue >.Add(), System.Xml.Dictionary, System.item, and System.obj.

Referenced by System.Xml.Serialization.XmlSchemaImporter.GatherGroupChoices(), and System.Xml.Serialization.XmlSchemaImporter.ImportSubstitutionGroupMember().