| HtmlWriterState Enumeration |
An enumeration of possible states of a
HtmlWriter.
Namespace: MimeKit.TextAssembly: MimeKit (in MimeKit.dll) Version: 4.7.1
Syntax public enum HtmlWriterState
Members Member name | Value | Description |
---|
Default | 0 |
The HtmlWriter is not within a tag. In this state, the HtmlWriter
can only write a tag or text.
|
Tag | 1 |
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.
|
Attribute | 2 |
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