Json.NET - Quick Starts & API Documentation
DeserializeObject Method (value, type, settings)
NamespacesNewtonsoft.JsonJsonConvertDeserializeObject(String, Type, JsonSerializerSettings)
Deserializes the JSON string to the specified type.
Declaration Syntax
C#Visual BasicVisual C++
public static Object DeserializeObject(
	string value,
	Type type,
	JsonSerializerSettings settings
)
Public Shared Function DeserializeObject ( _
	value As String, _
	type As Type, _
	settings As JsonSerializerSettings _
) As Object
public:
static Object^ DeserializeObject(
	String^ value, 
	Type^ type, 
	JsonSerializerSettings^ settings
)
Parameters
value (String)
The JSON to deserialize.
type (Type)
The type of 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)