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

◆ Write41_XmlSchemaComplexContent()

void System.Xml.Serialization.SchemaObjectWriter.Write41_XmlSchemaComplexContent ( XmlSchemaComplexContent o)
inlineprivate

Definition at line 777 of file SchemaObjectWriter.cs.

778 {
779 if (o != null)
780 {
781 WriteStartElement("complexContent");
782 WriteAttribute("id", "", o.Id);
783 WriteAttribute("mixed", "", XmlConvert.ToString(o.IsMixed));
784 WriteAttributes(o.UnhandledAttributes, o);
785 Write5_XmlSchemaAnnotation(o.Annotation);
787 {
789 }
790 else if (o.Content is XmlSchemaComplexContentExtension)
791 {
793 }
795 }
796 }
void Write42_XmlSchemaComplexContentExtension(XmlSchemaComplexContentExtension o)
void WriteAttribute(string localName, string ns, string value)
void WriteAttributes(XmlAttribute[] a, XmlSchemaObject o)
void Write56_XmlSchemaComplexContentRestriction(XmlSchemaComplexContentRestriction o)
void Write5_XmlSchemaAnnotation(XmlSchemaAnnotation o)

References System.Xml.Dictionary, System.Xml.XmlConvert.ToString(), System.Xml.Serialization.SchemaObjectWriter.Write42_XmlSchemaComplexContentExtension(), System.Xml.Serialization.SchemaObjectWriter.Write56_XmlSchemaComplexContentRestriction(), System.Xml.Serialization.SchemaObjectWriter.Write5_XmlSchemaAnnotation(), System.Xml.Serialization.SchemaObjectWriter.WriteAttribute(), System.Xml.Serialization.SchemaObjectWriter.WriteAttributes(), System.Xml.Serialization.SchemaObjectWriter.WriteEndElement(), and System.Xml.Serialization.SchemaObjectWriter.WriteStartElement().

Referenced by System.Xml.Serialization.SchemaObjectWriter.Write35_XmlSchemaComplexType(), and System.Xml.Serialization.SchemaObjectWriter.Write3_XmlSchemaObject().