%JSON_FreeObjectHandle function


Function

Release handle to JSON object.

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


Description

Funcion release handle to JSON object.

Exception is thrown if handle to object is invalid.

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