Json.NET - Quick Starts & API Documentation
DeserializeObject<(Of <(T>)>) Method (value, settings)
NamespacesNewtonsoft.JsonJsonConvertDeserializeObject<(Of <(T>)>)(String, JsonSerializerSettings)
Deserializes the JSON string to the specified type.
Declaration Syntax
C#Visual BasicVisual 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
)
Generic Template Parameters
T
The type of the object to deserialize.
Parameters
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.
Return Value
The deserialized object from the JSON string.

Assembly: Newtonsoft.Json (Module: Newtonsoft.Json) Version: 3.5.0.0 (3.5.0.0)