Deserializes the JSON string to the specified type.
| C# | Visual Basic | Visual C++ |
public static T DeserializeObject<T>( string value, JsonSerializerSettings settings )
Public Shared Function DeserializeObject(Of T) ( _ value As String, _ settings As JsonSerializerSettings _ ) As T
public: generic<typename T> static T DeserializeObject( String^ value, JsonSerializerSettings^ settings )
- T
- The type of the object to deserialize.
- value (String)
- The object to deserialize.
- settings (JsonSerializerSettings)
- The JsonSerializerSettings used to deserialize the object. If this is null, default serialization settings will be is used.
The deserialized object from the JSON string.