Enum JsonParser.JsonValueType
Specifies the recognized JSON value types.
Namespace: TriLibCore.Utils
Assembly: TriLibCore.dll
Syntax
public enum JsonParser.JsonValueType
Fields
| Name | Description |
|---|---|
| Array | Represents a JSON array type ("[...]"). |
| False | Represents the literal 'false'. |
| Null | Represents the literal 'null'. |
| Number | Represents a numeric JSON value. |
| Object | Represents a JSON object type ("{...}"). |
| String | Represents a string JSON value. |
| True | Represents the literal 'true'. |
| Unknown | Represents an unknown or unrecognized type. |