Enum TomlTokenType
Enumeration of TOML token types.
public enum TomlTokenType
Fields
Array = 6TOML array.
ArrayOfTables = 8Array of tables.
Comment = 4Comment.
InlineTable = 2Inline TOML table defined using brace notation.
Key = 7TOML key.
KeyValue = 3Key-value pair.
PrimitiveValue = 5Primitive value (string, number, boolean, or datetime).
Table = 1Regular TOML table (section).
Undefined = 0Undefined or invalid token type.
Remarks
TomlTokenType identifies the specific kind of TOML element represented by a TomlToken. Each TomlToken instance has a TokenType property that indicates its type.