JSON
System.JSON
Namespace: System
Assembly: Wisej.Framework (2.5.0.0)
Provides JSON serialization and parsing functionality and extends every Object with the ToJSON methods.
public class JSON
Methods
Parse(json)

Parses a JSON string to a dynamic object, similar to a JavaScript "expando" object.
Returns: Object. An instance of DynamicObject containing all the values parsed from the json string.
Parse(stream)

Parses a JSON string to a dynamic object, similar to a JavaScript "expando" object.
Returns: Object. An instance of DynamicObject containing all the values parsed from the stream stream.
Stringify(obj, formatted)

Serializes the object to a JSON string.
Returns: String. A String representing the serialized object.
Stringify(obj, options)

Serializes the object to a JSON string.
Returns: String. A String representing the serialized object.
ToJSON(obj, formatted)

Serializes the object to a JSON string.
Returns: String. A String representing the serialized object.
ToJSON(obj, options)

Serializes the object to a JSON string.
Returns: String. A String representing the serialized object.
Last updated
Was this helpful?