Enum JsonValueType
Specifies various types of values for use in a JSON key:value pair.
Namespace: Manatee.Json
Assembly: Manatee.Json.dll
Syntax
public enum JsonValueType
Fields
Name | Description |
---|---|
Array | Indicates that the Json key:value pair contains a Json array. |
Boolean | Indicates that the Json key:value pair contains a boolean value. |
Null | Indicates that the Json key:value pair contains a null value. |
Number | Indicates that the Json key:value pair contains a numeric value (double). |
Object | Indicates that the Json key:value pair contains a nested Json object. |
String | Indicates that the Json key:value pair contains a string. |