Html |
public enum HtmlTokenizerState
| Member name | Value | Description |
|---|---|---|
| Data | 0 | The data state as described at http://www.w3.org/TR/html5/syntax.html#data-state. |
| CharacterReferenceInData | 1 | The character reference in data state as described at http://www.w3.org/TR/html5/syntax.html#character-reference-in-data-state. |
| RcData | 2 | The RCDATA state as described at http://www.w3.org/TR/html5/syntax.html#rcdata-state. |
| CharacterReferenceInRcData | 3 | The character reference in RCDATA state as described at http://www.w3.org/TR/html5/syntax.html#character-reference-in-rcdata-state. |
| RawText | 4 | The RAWTEXT state as described at http://www.w3.org/TR/html5/syntax.html#rawtext-state. |
| ScriptData | 5 | The script data state as described at http://www.w3.org/TR/html5/syntax.html#script-data-state. |
| PlainText | 6 | The PLAINTEXT state as described at http://www.w3.org/TR/html5/syntax.html#plaintext-state. |
| TagOpen | 7 | The tag open state as described at http://www.w3.org/TR/html5/syntax.html#tag-open-state. |
| EndTagOpen | 8 | The end tag open state as described at http://www.w3.org/TR/html5/syntax.html#end-tag-open-state. |
| TagName | 9 | The tag name state as described at http://www.w3.org/TR/html5/syntax.html#tag-name-state. |
| RcDataLessThan | 10 | The RCDATA less-than state as described at http://www.w3.org/TR/html5/syntax.html#rcdata-less-than-sign-state. |
| RcDataEndTagOpen | 11 | The RCDATA end tag open state as described at http://www.w3.org/TR/html5/syntax.html#rcdata-end-tag-open-state. |
| RcDataEndTagName | 12 | The RCDATA end tag name state as described at http://www.w3.org/TR/html5/syntax.html#rcdata-end-tag-name-state. |
| RawTextLessThan | 13 | The RAWTEXT less-than state as described at http://www.w3.org/TR/html5/syntax.html#rawtext-less-than-sign-state. |
| RawTextEndTagOpen | 14 | The RAWTEXT end tag open state as described at http://www.w3.org/TR/html5/syntax.html#rawtext-end-tag-open-state. |
| RawTextEndTagName | 15 | The RAWTEXT end tag name state as described at http://www.w3.org/TR/html5/syntax.html#rawtext-end-tag-name-state. |
| ScriptDataLessThan | 16 | The script data less-than state as described at http://www.w3.org/TR/html5/syntax.html#script-data-less-than-sign-state. |
| ScriptDataEndTagOpen | 17 | The script data end tag open state as described at http://www.w3.org/TR/html5/syntax.html#script-data-end-tag-open-state. |
| ScriptDataEndTagName | 18 | The script data end tag name state as described at http://www.w3.org/TR/html5/syntax.html#script-data-end-tag-name-state. |
| ScriptDataEscapeStart | 19 | The script data escape start state as described at http://www.w3.org/TR/html5/syntax.html#script-data-escape-start-state. |
| ScriptDataEscapeStartDash | 20 | The script data escape start state as described at http://www.w3.org/TR/html5/syntax.html#script-data-escape-start-dash-state. |
| ScriptDataEscaped | 21 | The script data escaped state as described at http://www.w3.org/TR/html5/syntax.html#script-data-escaped-state. |
| ScriptDataEscapedDash | 22 | The script data escaped dash state as described at http://www.w3.org/TR/html5/syntax.html#script-data-escaped-dash-state. |
| ScriptDataEscapedDashDash | 23 | The script data escaped dash dash state as described at http://www.w3.org/TR/html5/syntax.html#script-data-escaped-dash-dash-state. |
| ScriptDataEscapedLessThan | 24 | The script data escaped less-than state as described at http://www.w3.org/TR/html5/syntax.html#script-data-escaped-less-than-sign-state. |
| ScriptDataEscapedEndTagOpen | 25 | The script data escaped end tag open state as described at http://www.w3.org/TR/html5/syntax.html#script-data-escaped-end-tag-open-state. |
| ScriptDataEscapedEndTagName | 26 | The script data escaped end tag name state as described at http://www.w3.org/TR/html5/syntax.html#script-data-escaped-end-tag-name-state. |
| ScriptDataDoubleEscapeStart | 27 | The script data double escape start state as described at http://www.w3.org/TR/html5/syntax.html#script-data-double-escape-start-state. |
| ScriptDataDoubleEscaped | 28 | The script data double escaped state as described at http://www.w3.org/TR/html5/syntax.html#script-data-double-escaped-state. |
| ScriptDataDoubleEscapedDash | 29 | The script data double escaped dash state as described at http://www.w3.org/TR/html5/syntax.html#script-data-double-escaped-dash-state. |
| ScriptDataDoubleEscapedDashDash | 30 | The script data double escaped dash dash state as described at http://www.w3.org/TR/html5/syntax.html#script-data-double-escaped-dash-dash-state. |
| ScriptDataDoubleEscapedLessThan | 31 | The script data double escaped less-than state as described at http://www.w3.org/TR/html5/syntax.html#script-data-double-escaped-less-than-sign-state. |
| ScriptDataDoubleEscapeEnd | 32 | The script data double escape end state as described at http://www.w3.org/TR/html5/syntax.html#script-data-double-escape-end-state. |
| BeforeAttributeName | 33 | The before attribute name state as described at http://www.w3.org/TR/html5/syntax.html#before-attribute-name-state. |
| AttributeName | 34 | The attribute name state as described at http://www.w3.org/TR/html5/syntax.html#attribute-name-state. |
| AfterAttributeName | 35 | The after attribute name state as described at http://www.w3.org/TR/html5/syntax.html#after-attribute-name-state. |
| BeforeAttributeValue | 36 | The beforw attribute value state as described at http://www.w3.org/TR/html5/syntax.html#before-attribute-value-state. |
| AttributeValueQuoted | 37 | The attribute value quoted state as described at http://www.w3.org/TR/html5/syntax.html#attribute-value-(double-quoted)-state. |
| AttributeValueUnquoted | 38 | The attribute value unquoted state as described at http://www.w3.org/TR/html5/syntax.html#attribute-value-(unquoted)-state. |
| CharacterReferenceInAttributeValue | 39 | The character reference in attribute value state as described at http://www.w3.org/TR/html5/syntax.html#character-reference-in-attribute-value-state. |
| AfterAttributeValueQuoted | 40 | The after attribute value quoted state as described at http://www.w3.org/TR/html5/syntax.html#after-attribute-value-(quoted)-state. |
| SelfClosingStartTag | 41 | The self-closing start tag state as described at http://www.w3.org/TR/html5/syntax.html#self-closing-start-tag-state. |
| BogusComment | 42 | The bogus comment state as described at http://www.w3.org/TR/html5/syntax.html#bogus-comment-state. |
| MarkupDeclarationOpen | 43 | The markup declaration open state as described at http://www.w3.org/TR/html5/syntax.html#markup-declaration-open-state. |
| CommentStart | 44 | The comment start state as described at http://www.w3.org/TR/html5/syntax.html#comment-start-state. |
| CommentStartDash | 45 | The comment start dash state as described at http://www.w3.org/TR/html5/syntax.html#comment-start-dash-state. |
| Comment | 46 | The comment state as described at http://www.w3.org/TR/html5/syntax.html#comment-state. |
| CommentEndDash | 47 | The comment end dash state as described at http://www.w3.org/TR/html5/syntax.html#comment-end-dash-state. |
| CommentEnd | 48 | The comment end state as described at http://www.w3.org/TR/html5/syntax.html#comment-end-state. |
| CommentEndBang | 49 | The comment end bang state as described at http://www.w3.org/TR/html5/syntax.html#comment-end-bang-state. |
| DocType | 50 | The DOCTYPE state as described at http://www.w3.org/TR/html5/syntax.html#doctype-state. |
| BeforeDocTypeName | 51 | The before DOCTYPE name state as described at http://www.w3.org/TR/html5/syntax.html#before-doctype-name-state. |
| DocTypeName | 52 | The DOCTYPE name state as described at http://www.w3.org/TR/html5/syntax.html#doctype-name-state. |
| AfterDocTypeName | 53 | The after DOCTYPE name state as described at http://www.w3.org/TR/html5/syntax.html#after-doctype-name-state. |
| AfterDocTypePublicKeyword | 54 | The after DOCTYPE public keyword state as described at http://www.w3.org/TR/html5/syntax.html#after-doctype-public-keyword-state. |
| BeforeDocTypePublicIdentifier | 55 | The before DOCTYPE public identifier state as described at http://www.w3.org/TR/html5/syntax.html#before-doctype-public-identifier-state. |
| DocTypePublicIdentifierQuoted | 56 | The DOCTYPE public identifier quoted state as described at http://www.w3.org/TR/html5/syntax.html#doctype-public-identifier-(double-quoted)-state. |
| AfterDocTypePublicIdentifier | 57 | The after DOCTYPE public identifier state as described at http://www.w3.org/TR/html5/syntax.html#after-doctype-public-identifier-state. |
| BetweenDocTypePublicAndSystemIdentifiers | 58 | The between DOCTYPE public and system identifiers state as described at http://www.w3.org/TR/html5/syntax.html#between-doctype-public-and-system-identifiers-state. |
| AfterDocTypeSystemKeyword | 59 | The after DOCTYPE system keyword state as described at http://www.w3.org/TR/html5/syntax.html#after-doctype-system-keyword-state. |
| BeforeDocTypeSystemIdentifier | 60 | The before DOCTYPE system identifier state as described at http://www.w3.org/TR/html5/syntax.html#before-doctype-system-identifier-state. |
| DocTypeSystemIdentifierQuoted | 61 | The DOCTYPE system identifier quoted state as described at http://www.w3.org/TR/html5/syntax.html#doctype-system-identifier-(double-quoted)-state. |
| AfterDocTypeSystemIdentifier | 62 | The after DOCTYPE system identifier state as described at http://www.w3.org/TR/html5/syntax.html#after-doctype-system-identifier-state. |
| BogusDocType | 63 | The bogus DOCTYPE state as described at http://www.w3.org/TR/html5/syntax.html#bogus-doctype-state. |
| CDataSection | 64 | The CDATA section state as described at http://www.w3.org/TR/html5/syntax.html#cdata-section-state. |
| EndOfFile | 65 | The end of file state. |