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

◆ Write36_XmlSchemaSimpleContent()

void System.Xml.Serialization.SchemaObjectWriter.Write36_XmlSchemaSimpleContent ( XmlSchemaSimpleContent o)
inlineprivate

Definition at line 719 of file SchemaObjectWriter.cs.

720 {
721 if (o != null)
722 {
723 WriteStartElement("simpleContent");
724 WriteAttribute("id", "", o.Id);
725 WriteAttributes(o.UnhandledAttributes, o);
726 Write5_XmlSchemaAnnotation(o.Annotation);
728 {
730 }
731 else if (o.Content is XmlSchemaSimpleContentExtension)
732 {
734 }
736 }
737 }
void WriteAttribute(string localName, string ns, string value)
void Write38_XmlSchemaSimpleContentExtension(XmlSchemaSimpleContentExtension o)
void Write40_XmlSchemaSimpleContentRestriction(XmlSchemaSimpleContentRestriction o)
void WriteAttributes(XmlAttribute[] a, XmlSchemaObject o)
void Write5_XmlSchemaAnnotation(XmlSchemaAnnotation o)

References System.Xml.Dictionary, System.Xml.Serialization.SchemaObjectWriter.Write38_XmlSchemaSimpleContentExtension(), System.Xml.Serialization.SchemaObjectWriter.Write40_XmlSchemaSimpleContentRestriction(), 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().