JSON

System.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

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

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

ParameterTypeDescription

json

The JSON string to parse.

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

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

ParameterTypeDescription

stream

A Stream providing the JSON string to parse.

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

Serializes the object to a JSON string.

ParameterTypeDescription

obj

The object to serialize.

True to format the output JSON string.

Returns: String. A String representing the serialized object.

Serializes the object to a JSON string.

ParameterTypeDescription

obj

The object to serialize.

options

A combination of WisejSerializerOptions flags.

Returns: String. A String representing the serialized object.

Serializes the object to a JSON string.

ParameterTypeDescription

obj

The object to serialize.

True to format the output JSON string.

Returns: String. A String representing the serialized object.

Serializes the object to a JSON string.

ParameterTypeDescription

obj

The object to serialize.

options

A combination of WisejSerializerOptions flags.

Returns: String. A String representing the serialized object.

Last updated