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

WriteAttribute() protected method

protected WriteAttribute ( string localName, string ns, XmlQualifiedName value ) : void
localName string
ns string
value System.Xml.XmlQualifiedName
return void
        protected void WriteAttribute(string localName, string ns, XmlQualifiedName value) {
            if (value.IsEmpty)
                return;
            WriteAttribute(localName, ns, value.ToString());
        }

Same methods

SchemaObjectWriter::WriteAttribute ( XmlAttribute a ) : void
SchemaObjectWriter::WriteAttribute ( string localName, string ns, string value ) : void