Deserializes the Json structure contained by the specified JsonReader
into an instance of the specified type.
| 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 )
- T
- The type of the object to deserialize.
- reader (JsonReader)
- The JsonReader containing the object.
The instance of T being deserialized.