System.Xml.Serialization.SchemaObjectWriter.Write31_XmlSchemaAttributeGroup C# (CSharp) Method

Write31_XmlSchemaAttributeGroup() private method

private Write31_XmlSchemaAttributeGroup ( XmlSchemaAttributeGroup o ) : void
o System.Xml.Schema.XmlSchemaAttributeGroup
return void
        void Write31_XmlSchemaAttributeGroup(XmlSchemaAttributeGroup o) {
            if ((object)o == null) return;
            WriteStartElement("attributeGroup");
            
            WriteAttribute(@"id", @"", ((System.String)o.@Id));
            WriteAttribute(@"name", @"", ((System.String)o.@Name));
            WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o);
            Write5_XmlSchemaAnnotation((XmlSchemaAnnotation)o.@Annotation);
            WriteSortedItems(o.Attributes);
            Write33_XmlSchemaAnyAttribute((XmlSchemaAnyAttribute)o.@AnyAttribute);
            WriteEndElement();
        }