HtmlTokenKind enumeration
The HtmlTokenKind enumeration identifies the current token type being processed by an HtmlReader object.
Namespace: Microsoft.Exchange.Data.TextConverters
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Enumeration HtmlTokenKind
'Usage
Dim instance As HtmlTokenKind
public enum HtmlTokenKind
Members
Member name | Description | |
---|---|---|
Text | Indicates that the current token is text between an HTML start tag and an HTML end tag. | |
StartTag | Indicates that the current tag is the start tag of an HTML element, such as <A>. | |
EndTag | Indicates that the current tag is the end tag of an element, such as </A> | |
EmptyElementTag | Indicates that the current tag does not contain any elements, such as the <BR> tag. | |
SpecialTag | Indicates that the current tag is a special HTML tag, such as a comment. | |
OverlappedClose | Indicates that the current tag is an HTML tag inserted by HTML normalization to close an HTML element that is not the most recently opened HTML element. | |
OverlappedReopen | Indicates that the current tag is an HTML tag inserted by HTML normalization to reopon an HTML element that was closed by an OverlappedClose element. |