Table of Contents

Enum TomlStringValueType

Namespace
RStein.TOML
Assembly
RStein.TOML.dll

Specifies the string value type for a TOML string token.

public enum TomlStringValueType

Fields

BasicMlString = 2048

A multi-line basic string enclosed in triple double quotes (e.g. """hello"""). Supports escape sequences and spans multiple lines.

BasicString = 1024

A basic string enclosed in double quotes (e.g. "hello"). Supports escape sequences.

LiteralMlString = 8192

A multi-line literal string enclosed in triple single quotes (e.g. '''hello'''). No escape sequences are processed and spans multiple lines.

LiteralString = 4096

A literal string enclosed in single quotes (e.g. 'hello'). No escape sequences are processed.

Unspecified = 0

No string type has been specified.