Json.NET - Quick Starts & API Documentation
Deserialize<(Of <(<'T>)>)> Method (reader)
Namespaces ► Newtonsoft.Json ► JsonSerializer ► Deserialize<(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.