Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static method: object Deserialize(Type, JsonValue, ClassifyOptions, IClassifyFormat<JsonValue>)

Declaration

public static object Deserialize(
    Type type,
    JsonValue json,
    ClassifyOptions options = null,
    IClassifyFormat<JsonValue> format = null
)

Summary

Reconstructs an object of the specified type from the specified serialized form.

Parameters

Typetype Type of object to reconstruct.
JsonValuejson Serialized form to reconstruct object from.
ClassifyOptionsoptions Options.
IClassifyFormat<JsonValue>format Implementation of a Classify format. See ClassifyJsonFormat for an example.

Returns

A new instance of the requested type.