Deserialize Method (reader)

Json.NET

Json.NET - Quick Starts & API Documentation Deserialize<(Of <(<'T>)>)> Method (reader)
NamespacesNewtonsoft.JsonJsonSerializerDeserialize<(Of <<'(T>)>>)(JsonReader)
Deserializes the Json structure contained by the specified JsonReader into an instance of the specified type.
Declaration Syntax
C# Visual Basic Visual C++
public T Deserialize<T>(
	JsonReader reader
)
Public Function Deserialize(Of T) ( _
	reader As JsonReader _
) As T
public:
generic<typename T>
T Deserialize(
	JsonReader^ reader
)
Generic Template Parameters
T
The type of the object to deserialize.
Parameters
reader (JsonReader)
The JsonReader containing the object.
Return Value
The instance of T being deserialized.

Assembly: Newtonsoft.Json (Module: Newtonsoft.Json) Version: 4.5.0.0 (4.5.6.14930)