Table of Contents

Enum TomlValueType

Namespace
RStein.TOML
Assembly
RStein.TOML.dll

Enumeration of TOML value types.

public enum TomlValueType

Fields

Boolean = 2

Boolean value (true or false).

DateTime = 3

DateTime value (offset datetime, local datetime, local date, or local time).

Float = 4

Floating-point number (including special values like inf and nan).

Integer = 5

Integer number.

String = 1

String value.

Unknown = 0

Unknown or unspecified value type.

Remarks

TomlValueType classifies the semantic type of TomlPrimitiveValue. Each primitive value has a Type property indicating its value type.