TJsonState Enumeration
Represents the internal states of the JSON reader during parsing. These states are used to track the current position in the JSON document and validate the structure.
Syntax
Unit: Bcl.Json.Reader
Members
| Name | Value | Description |
|---|---|---|
| None | 0 | |
| BeginObject | 1 | |
| EndObject | 2 | |
| BeginArray | 3 | |
| EndArray | 4 | |
| True | 5 | |
| False | 6 | |
| Null | 7 | |
| DoubleQuoted | 8 | |
| Buffered | 9 | |
| DoubleQuotedName | 10 | |
| Int64 | 11 | |
| Number | 12 | |
| EOF | 13 |