JSON_ObjectGetFieldName

JSON_ObjectGetFieldName

%JSON_ObjectGetFieldName function


Function

Gets a field name at a given index from the JSON object.

Declaration

TEXT %JSON_ObjectGetFieldName( INT in handle, INT in index )

Parameters

handle

Handle to parent JSON object.

index

Index of field

Return value

Field name at a given index in the JSON object.

Description

Function gets a field name at a given index in the JSON object.

Exception is thrown if handle to the JSON object is invalid or index is out of range.

Example

INT _obj _obj := %JSON_ObjectFromString('{"Text":"Lorem Ipsum"}') TEXT _txt _txt := %JSON_ObjectGetFieldName(_obj, 1) %JSON_FreeObjectHandle(_obj)