JsonNode Class Properties

In this section, the JsonNode class properties are presented in alphabetical order

Description

Use this property to return the type of the JsonNode object.

Example

Local JsonNode &jNode = CreateJsonNode();
Local integer &nodetype = &jNode.NodeType;

Description

Use this property to return the type of the JsonNode value.

Example

Local JsonNode &jNode = CreateJsonNode();
Local integer &valuetype = &jNode.ValueType;