Enum JsonDataType
An enum demonstrating the type of data contained by the Json class.
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public enum JsonDataType : byte
Fields
Name | Description |
---|---|
Array | Contained data is a Json array. |
Boolean | Contained data is of boolean type. |
Date | Contained data is a date type. |
Null | Contained data is null. This value is actually just a counterpart of null. |
Number | Contained data is of number type. |
Object | Contained data is a Json object class. |
String | Contained data is of string type. |