Diffusion .NET Client Library  6.1.5
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
Package PushTechnology.ClientInterface.IO.JSON

Classes

class  JSONReader
 The JSON reader that is able to read data from a JSON formatted string. More...
 

Enumerations

enum  JSONToken {
  JSONToken.VALUE_NULL, JSONToken.VALUE_TRUE, JSONToken.VALUE_FALSE, JSONToken.INTEGER,
  JSONToken.DECIMAL, JSONToken.STRING, JSONToken.OBJECT_START, JSONToken.OBJECT_END,
  JSONToken.ARRAY_START, JSONToken.ARRAY_END, JSONToken.FIELD_NAME
}
 The current JSON token. More...
 

Enumeration Type Documentation

The current JSON token.

Implemented in Version 6.0.

Enumerator
VALUE_NULL 

The current token is a 'null' value.

VALUE_TRUE 

The current token is a boolean value of 'true'.

VALUE_FALSE 

The current token is a boolean value of 'false'.

INTEGER 

The current token is 64-bit unsigned integer value.

DECIMAL 

The current token is a 64-bit floating point value.

STRING 

The current token is a UTF-8 encoded string value.

OBJECT_START 

The current token is the start of a Object structure ('{').

OBJECT_END 

The current token is the end of a Object structure ('}').

ARRAY_START 

The current token is the start of a array structure ('[').

ARRAY_END 

The current token is the end of a array structure (']').

FIELD_NAME 

The current token is a UTF-8 encoded string that represent the name of a field within an Object structure.