IntelligenceX
Class

JsonLite

Namespace IntelligenceX.Json
Assembly IntelligenceX
Modifiers static

Lightweight JSON parsing and serialization helpers.

Inheritance

  • Object
  • JsonLite

Methods

public static JsonValue Parse(String json) #
Returns: JsonValue

Parses 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: String

Serializes a JsonValue to JSON text.

Parameters

value IntelligenceX.Json.JsonValue
Value to serialize.

Returns

JSON string.

public static String Serialize(Object value) #
Returns: String

Serializes a supported object into JSON text.

Parameters

value System.Object
Object to serialize.

Returns

JSON string.