Table of Contents

Enum TomlTokenType

Namespace
RStein.TOML
Assembly
RStein.TOML.dll

Enumeration of TOML token types.

public enum TomlTokenType

Fields

Array = 6

TOML array.

ArrayOfTables = 8

Array of tables.

Comment = 4

Comment.

InlineTable = 2

Inline TOML table defined using brace notation.

Key = 7

TOML key.

KeyValue = 3

Key-value pair.

PrimitiveValue = 5

Primitive value (string, number, boolean, or datetime).

Table = 1

Regular TOML table (section).

Undefined = 0

Undefined 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.