GetJsonNode method: JsonObject class

Syntax

GetJsonNode(Name)

Description

Use this method to return the Json node mentioned by the input parameter from the Json object.

Parameters

Parameter Description

Name

Specifies the name of the Json node object as a string.

Returns

JsonNode.

Example

Local JsonObject &jObj = CreateJsonObject();
&jObj.AddProperty("Name", "TYPE_STRING");
Local JsonNode &jn = &jObj.GetJsonNode("Name");