Enum
ParsedElementType

The type set by the parser when an element is parsed.

Definition

Namespace:ArtOfTest.Common

Assembly:ArtOfTest.WebAii.dll

Syntax:

cs-api-definition
public enum ParsedElementType

Fields

Comment

A markup comment tag. (example: <!-- comment --> )

Declaration

cs-api-definition
Comment = 4

Field Value

ParsedElementType

DocType

A DOCTYPE tag.

Declaration

cs-api-definition
DocType = 5

Field Value

ParsedElementType

MalFormed

A malformed tag. (example: </foo/> )

Declaration

cs-api-definition
MalFormed = 3

Field Value

ParsedElementType

Markup

Any markup element.

Declaration

cs-api-definition
Markup = 1

Field Value

ParsedElementType

OrphanedClosingTag

An orphaned closing tag with no open tag.

Declaration

cs-api-definition
OrphanedClosingTag = 2

Field Value

ParsedElementType

TextLiteral

A literal text element.

Declaration

cs-api-definition
TextLiteral = 0

Field Value

ParsedElementType