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

Write33_XmlSchemaAnyAttribute() private method

private Write33_XmlSchemaAnyAttribute ( XmlSchemaAnyAttribute o ) : void
o System.Xml.Schema.XmlSchemaAnyAttribute
return void
        void Write33_XmlSchemaAnyAttribute(XmlSchemaAnyAttribute o) {
            if ((object)o == null) return;
            WriteStartElement("anyAttribute");
            
            WriteAttribute(@"id", @"", ((System.String)o.@Id));
            WriteAttribute("namespace", "", ToString(o.NamespaceList));
            XmlSchemaContentProcessing process = o.@ProcessContents == XmlSchemaContentProcessing.@None ? XmlSchemaContentProcessing.Strict : o.@ProcessContents;
            WriteAttribute(@"processContents", @"", Write34_XmlSchemaContentProcessing(process));
            WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o);
            Write5_XmlSchemaAnnotation((XmlSchemaAnnotation)o.@Annotation);
            WriteEndElement();
        }