Class
JsonLite
Lightweight JSON parsing and serialization helpers.
Inheritance
- Object
- JsonLite
Methods
public static JsonValue Parse(String json) #Returns:
JsonValueParses a JSON string into a JsonValue.
Parameters
- json System.String
- JSON text to parse.
Returns
The parsed JSON value.
Serialize 2 overloads
public static String Serialize(JsonValue value) #Returns:
StringSerializes a JsonValue to JSON text.
Parameters
- value IntelligenceX.Json.JsonValue
- Value to serialize.
Returns
JSON string.
public static String Serialize(Object value) #Returns:
StringSerializes a supported object into JSON text.
Parameters
- value System.Object
- Object to serialize.
Returns
JSON string.
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object