GetString method: JsonValue class

Syntax

GetString()

Description

Use this method to return string value of the object.

Parameters

None.

Returns

String.

Example

Local JsonValue &jVal = CreateJsonValue();
&jVal.SetString("Test String");
Local string &jValStr = &jVal.GetString();