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

WriteStartAttribute() public method

public WriteStartAttribute ( string prefix, string localName ) : void
prefix string
localName string
return void
        public override void WriteStartAttribute(string prefix, string localName)
        {
            WriteByte(' ');
            if (prefix.Length != 0)
            {
                WritePrefix(prefix);
                WriteByte(':');
            }
            WriteLocalName(localName);
            WriteBytes('=', '"');
            _inAttribute = true;
        }

Same methods

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