Click or drag to resize
MimeKit

HtmlWriterState Enumeration

An enumeration of possible states of a HtmlWriter.

Namespace: MimeKit.Text
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public enum HtmlWriterState
Members
Member nameValueDescription
Default0 The HtmlWriter is not within a tag. In this state, the HtmlWriter can only write a tag or text.
Tag1 The HtmlWriter is inside a tag but has not started to write an attribute. In this state, the HtmlWriter can write an attribute, another tag, or text.
Attribute2 The HtmlWriter is inside an attribute. In this state, the HtmlWriter can append a value to the current attribute, start the next attribute, or write another tag or text.
Remarks
An enumeration of possible states of a HtmlWriter.
See Also