List of Json methods: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
(Automatically generated page update)
 
Line 25: Line 25:
<tr><td valign="top">[[Parse (Json function)|Parse]]</td><td valign="top">Create an JSON object from serialized JSON</td></tr>
<tr><td valign="top">[[Parse (Json function)|Parse]]</td><td valign="top">Create an JSON object from serialized JSON</td></tr>
<tr><td valign="top">[[String (Json function)|String]]</td><td valign="top">Create a String JSON object</td></tr>
<tr><td valign="top">[[String (Json function)|String]]</td><td valign="top">Create a String JSON object</td></tr>
<tr><td valign="top">[[Stringify (Json function)|Stringify]]</td><td valign="top">Serialize a JSON object</td></tr>
<tr><td valign="top">[[StringValue (Json function)|StringValue]]</td><td valign="top">Get string value of JSON object</td></tr>
<tr><td valign="top">[[StringValue (Json function)|StringValue]]</td><td valign="top">Get string value of JSON object</td></tr>
<tr><td valign="top">[[Stringify (Json function)|Stringify]]</td><td valign="top">Serialize a JSON object</td></tr>
<tr><td valign="top">[[ToString (Json function)|ToString]]</td><td valign="top">Serialize a JSON object</td></tr>
<tr><td valign="top">[[ToString (Json function)|ToString]]</td><td valign="top">Serialize a JSON object</td></tr>
<tr><td valign="top">[[True (Json function)|True]]</td><td valign="top">Create a true Boolean JSON object</td></tr>
<tr><td valign="top">[[True (Json function)|True]]</td><td valign="top">Create a true Boolean JSON object</td></tr>

Latest revision as of 20:43, 11 May 2016

The following are the available Json class methods.

MethodDescription
AddAdd an item to a JSON array
ArrayCreate an Array JSON object
BooleanCreate a Boolean JSON object
BooleanValueGet boolean value of JSON object
CopyCopy the JSON object
CountNumber of items in object
DeepCopyCopy the JSON object
DeleteDelete a JSON object/array item value
FalseCreate a false Boolean JSON object
InsertInsert an item into a JSON array
ItemReturn or set JSON object/array item value
ItemByNumberReturn JSON object/array item value by item number
NameByNumberGet name of item in JSON object
NumberCreate a Number JSON object
NumberByNameGet number of named item in JSON object
NumberValueGet number value of JSON object
ObjectCreate an Object JSON object
ParseCreate an JSON object from serialized JSON
StringCreate a String JSON object
StringifySerialize a JSON object
StringValueGet string value of JSON object
ToStringSerialize a JSON object
TrueCreate a true Boolean JSON object
TypeGet type of JSON object

See also