Enum TomlValueType
Enumeration of TOML value types.
public enum TomlValueType
Fields
Boolean = 2Boolean value (true or false).
DateTime = 3DateTime value (offset datetime, local datetime, local date, or local time).
Float = 4Floating-point number (including special values like inf and nan).
Integer = 5Integer number.
String = 1String value.
Unknown = 0Unknown or unspecified value type.
Remarks
TomlValueType classifies the semantic type of TomlPrimitiveValue.
Each primitive value has a Type property indicating its value type.