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

◆ ExportDerivedMappings()

void System.Xml.Serialization.XmlSchemaExporter.ExportDerivedMappings ( StructMapping mapping)
inlineprivate

Definition at line 1176 of file XmlSchemaExporter.cs.

1177 {
1178 if (mapping.IsAnonymousType)
1179 {
1180 return;
1181 }
1182 for (StructMapping structMapping = mapping.DerivedMappings; structMapping != null; structMapping = structMapping.NextDerivedMapping)
1183 {
1184 if (structMapping.IncludeInSchema)
1185 {
1187 }
1188 }
1189 }
XmlQualifiedName ExportStructMapping(StructMapping mapping, string ns, XmlSchemaElement element)

References System.Xml.Serialization.StructMapping.DerivedMappings, System.Xml.Dictionary, and System.Xml.Serialization.XmlSchemaExporter.ExportStructMapping().

Referenced by System.Xml.Serialization.XmlSchemaExporter.ExportRootIfNecessary(), and System.Xml.Serialization.XmlSchemaExporter.ExportStructMapping().