System.Xml.XmlUTF8NodeWriter.WriteStartAttribute C# (CSharp) Method

WriteStartAttribute() public method

public WriteStartAttribute ( string prefix, XmlDictionaryString localName ) : void
prefix string
localName XmlDictionaryString
return void
        public override void WriteStartAttribute(string prefix, XmlDictionaryString localName)
        {
            WriteStartAttribute(prefix, localName.Value);
        }

Same methods

XmlUTF8NodeWriter::WriteStartAttribute ( byte prefixBuffer, int prefixOffset, int prefixLength, byte localNameBuffer, int localNameOffset, int localNameLength ) : void
XmlUTF8NodeWriter::WriteStartAttribute ( string prefix, string localName ) : void