Object
JSONPrimitive
Iterable
JSONPrimitive | Private constructor. |
BooleanValue | Reads or writes Boolean value if the JSONPrimitive is actually Boolean. |
DoubleValue | Reads or writes Double value if the JSONPrimitive is actually Double. |
Int32Value | Reads or writes Int32 value if the JSONPrimitive is actually Int32. |
Int64Value | Reads or writes Int64 value if the JSONPrimitive is actually Int64. |
IsArray | Returns true if the JSONPrimitive is actually JSON array. |
IsBoolean | Returns true if the JSONPrimitive is actually Boolean. |
IsDouble | Returns true if the JSONPrimitive is actually Double. |
IsInt | Returns true if the JSONPrimitive is actually Integer based (Int32 or Int64). |
IsNull | Returns true if the JSONPrimitive represents JSON null. |
IsNumber | Returns true if the JSONPrimitive is actually number. |
IsObject | Returns true if the JSONPrimitive is actually JSON object. |
IsString | Returns true if the JSONPrimitive is actually String. |
MemberCount | Return number of members in the JSON object. |
StringValue | Reads or writes String value if the JSONPrimitive is actually String. |
Type | Returns type code enum value for the JSON primitive. |
AddMember | Adds Boolean member to a JSON object. |
AddMember | Adds Double member to a JSON object. |
AddMember | Adds JSONPrimitive member to a JSON object. |
AddMember | Adds Int32 member to a JSON object. |
AddMember | Adds Int64 member to a JSON object. |
AddMember | Adds String member to a JSON object. |
AsArray | Gets JSONArray from the JSONPrimitive if the primitive is actually array. |
BooleanValueByKey | Gets or Sets Boolean value by key on a JSON object. |
Clone | Deep clones the primitive.. |
DoubleValueByKey | Gets or Sets Double value by key on a JSON object. |
GetSource | Gets source for the JSON primitive and all nodes bellow it. |
HasMember | Checks if JSON object has a member by given name. |
Int32ValueByKey | Gets or Sets Int32 value by key on a JSON object. |
Int64ValueByKey | Gets or Sets Int64 value by key on a JSON object. |
Operator_Compare | Compares the JSON primitive with a JSONprimitive value. |
Operator_Compare | Compares the JSON primitive with a Boolean value. |
Operator_Compare | Compares the JSON primitive with a double value. |
Operator_Compare | Compares the JSON primitive with a Int32 value. |
Operator_Compare | Compares the JSON primitive with a Int64 value. |
Operator_Compare | Compares the JSON primitive with a String value. |
Operator_Subscript | Reads JSON primitive from JSON object by using the Xojo array operator. |
RemoveAllMembers | Removes all members from the primitive if the primitive is a JSON object. |
RemoveMember | Removes member by name from JSON object. |
SetArray | Changes the primitive so it becomes json array. |
SetObject | Changes the primitive so it becomes json object. |
SortKeys | Sorts the Keys if the primitive is actually Object. |
StringValueByKey | Gets or Sets String value by key on a JSON object. |
PrimitiveTypes | Enum representing types of primitive nodes. |