Enum TomlKeyType
Enumeration of TOML key formats.
public enum TomlKeyType
Fields
SimpleQuotedBasicString = 1024Key quoted with basic string syntax (allows escape sequences).
SimpleQuotedLiteralString = 4096Key quoted with literal string syntax (no escape sequences).
SimpleUnquoted = 16384Unquoted key (for simple alphanumeric identifiers and underscores).
Unknown = 0Key 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.