System.Xml.HtmlUtf8RawTextWriter.WriteEndAttribute C# (CSharp) Méthode

WriteEndAttribute() public méthode

public WriteEndAttribute ( ) : void
Résultat void
        public override void WriteEndAttribute() {

            if ( ( currentAttributeProperties & AttributeProperties.BOOLEAN ) != 0 ) {
                base.attrEndPos = bufPos;
            }
            else {
                if ( endsWithAmpersand ) {
                    OutputRestAmps();
                    endsWithAmpersand = false;
                }

                

                base.bufBytes[bufPos++] = (byte) '"';
            }
            base.inAttributeValue = false;
            base.attrEndPos = bufPos;
        }