ComplexConverter<T>.ReadJson Method

Deserializes an object from JSON format.

Definition

Namespace: Extreme.Data.Json
Assembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.1
C#
public Object ReadJson(
	JsonReader reader,
	Type objectType,
	Object existingValue,
	JsonSerializer serializer
)

Parameters

reader  JsonReader
The reader that contains the JSON.
objectType  Type
The type of the object to deserialize.
existingValue  Object
The pre-existing value of the object. Not used.
serializer  JsonSerializer
The JSON serializer to use for the deserialization.

Return Value

Object

See Also