Table of Contents

Enum JsonBasicType

Namespace
LMKit.Data.Json
Assembly
LM-Kit.NET.dll

Represents the various JSON data types that can be used within the JSON structure.

public enum JsonBasicType

Fields

JsonString = 0

Represents a JSON string value, typically used for text or characters.

JsonNumber = 1

Represents a JSON number value, which can be a floating-point or a decimal value.

JsonInteger = 2

Represents a JSON integer value, used for whole numbers without a decimal point.

JsonBoolean = 3

Represents a JSON boolean value, which can be either true or false.

JsonNull = 4

Represents a JSON null value, indicating the absence of any value.