Quaero.DW.Json

Static Methods

Methods

Quaero.DW.Json

Quaero.DW.Json Class

public class Quaero.DW.Json;
Base class for objects that get converted to JSON.

ToString() Method

 Quaero.DW.Json.ToString();
Convert this object to JSON using our custom converters.

ToJson() Method

System.String Quaero.DW.Json.ToJson();
Converts the object into JSON using all our converters.

Returns

A JSON string representation of the object.
[System.String]

FromJson() Static Method

T Quaero.DW.Json.FromJson<T>(System.String json);
Convert a JSON string into object, using all our converters.

Generic parameters

T
Any type.

Parameters

json
The JSON string.
[System.String]

Returns

T a subclass of [System.Object]