Deserializes the JSON to a .NET object.

Namespace: Newtonsoft.Json
Assembly: Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 4.5.0.0 (4.5.11.15729)

Syntax

C#
public static Object DeserializeObject(
	string value,
	JsonSerializerSettings settings
)
Visual Basic
Public Shared Function DeserializeObject ( _
	value As String, _
	settings As JsonSerializerSettings _
) As Object
Visual C++
public:
static Object^ DeserializeObject(
	String^ value, 
	JsonSerializerSettings^ settings
)

Parameters

value
Type: System..::..String
The JSON to deserialize.
settings
Type: Newtonsoft.Json..::..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.

See Also