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

Write49_XmlSchemaXPath() private method

private Write49_XmlSchemaXPath ( string name, string ns, XmlSchemaXPath o ) : void
name string
ns string
o System.Xml.Schema.XmlSchemaXPath
return void
        void Write49_XmlSchemaXPath(string name, string ns, XmlSchemaXPath o) {
            if ((object)o == null) return;
            WriteStartElement(name);
            WriteAttribute(@"id", @"", o.@Id);
            WriteAttribute(@"xpath", @"", o.@XPath);
            WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o);
            Write5_XmlSchemaAnnotation((XmlSchemaAnnotation)o.@Annotation);
            WriteEndElement();
        }