IsExist method: JsonObject class
Syntax
IsExist(Name)
Description
Use this method to check whether the property exists.
Parameters
| Parameter | Description |
|---|---|
|
Name |
Specifies the name of the Json object that needs to be checked as a string. |
Returns
Boolean.
Example
Local JsonObject &jObj = CreateJsonObject();
&jObj.AddProperty("Name", "TYPE_STRING");
Local boolean &bExist = &jObj.IsExist("Id");