Table of Contents

Enum TomlKeyType

Namespace
RStein.TOML
Assembly
RStein.TOML.dll

Enumeration of TOML key formats.

public enum TomlKeyType

Fields

SimpleQuotedBasicString = 1024

Key quoted with basic string syntax (allows escape sequences).

SimpleQuotedLiteralString = 4096

Key quoted with literal string syntax (no escape sequences).

SimpleUnquoted = 16384

Unquoted key (for simple alphanumeric identifiers and underscores).

Unknown = 0

Key type not yet determined.

Remarks

TomlKeyType specifies how a key is formatted in the TOML document. Keys can be unquoted (for simple identifiers) or quoted using different string syntaxes. This distinction is important for accurate serialization.