%JSON_FreeObjectHandle function


Function

Releases a handle to the JSON object.

Declaration
%JSON_FreeObjectHandle(
    INT in handle
 )
Parameters
handleHandle to JSON object.
Return value
None


Description

Function releases a handle to the JSON object.

Exception is thrown if the handle to the object is invalid.

Example
 INT _obj
 _obj := %JSON_CreateObject()
 
 %JSON_FreeObjectHandle(_obj)
Napíšte komentár