Goto: 4C Home | 4C Docs | 4C External Libraries Home | FCJSon Home | FCJSon Function List AddNull()

AddNull()

Purpose:
FCJSon::AddNull() adds a null <key>:<value> pair to a json object.
Usage:
rc = FCJSon::AddNull(<jsonident>,<key>);
Arguments:

integer <jsonident> - The ident of the object being modified

alpha <key> - The key to use for the null value
Returns:
integer <rc>
0 - OK
-1 - Error
Where Used:
FCJSon::AddNull() can be called anytime you have a valid json ident to an object of <key>:<value> pairs.
Example:
Example
Description:
FCJSon::AddNull() adds a null <key>:<value> pair to a json object.
Bugs/Features/Comments:
See Also:
FCJSon Function List


Back to Top