Enum MarkupTokenType
- Namespace
- GuildWars2.Markup
- Assembly
- GuildWars2.dll
Represents the different types of tokens that can be encountered in the markup processing.
[JsonConverter(typeof(MarkupTokenTypeJsonConverter))]
public enum MarkupTokenType
Fields
None = 0No token type.
Text = 1Represents a text token.
LineBreak = 2Represents a line break token.
TagStart = 3Represents the start of a tag.
TagValue = 4Represents the value within a tag.
TagClose = 5Represents a closing tag.
TagVoid = 6Represents a void tag, which is a self-closing tag.
End = 7Represents the end of the file/input.