Skip to main content
Version: 3.5

JSON

Namespace: System

Assembly: Wisej.Framework (3.5.0.0)

Provides JSON serialization and parsing functionality and extends every Object with the ToJSON methods.

public class JSON
info

In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Methods

Static memberParse(json)

Parses a JSON string to a dynamic object, similar to a JavaScript "expando" object.

ParameterTypeDescription
jsonStringThe JSON string to parse.

Returns: Object. An instance of DynamicObject containing all the values parsed from the json string.

Static memberParse(stream)

Parses a JSON string to a dynamic object, similar to a JavaScript "expando" object.

ParameterTypeDescription
streamStreamA Stream providing the JSON string to parse.

Returns: Object. An instance of DynamicObject containing all the values parsed from the stream stream.

Static memberStringify(obj, formatted)

Serializes the object to a JSON string.

ParameterTypeDescription
objObjectThe object to serialize.
formatted optionalBooleanTrue to format the output JSON string.

Returns: String. A String representing the serialized object.

Static memberStringify(obj, options)

Serializes the object to a JSON string.

ParameterTypeDescription
objObjectThe object to serialize.
optionsWisejSerializerOptionsA combination of WisejSerializerOptions flags.

Returns: String. A String representing the serialized object.

Static memberToJSON(obj, formatted)

Serializes the object to a JSON string.

ParameterTypeDescription
objObjectThe object to serialize.
formatted optionalBooleanTrue to format the output JSON string.

Returns: String. A String representing the serialized object.

Static memberToJSON(obj, options)

Serializes the object to a JSON string.

ParameterTypeDescription
objObjectThe object to serialize.
optionsWisejSerializerOptionsA combination of WisejSerializerOptions flags.

Returns: String. A String representing the serialized object.