Click or drag to resize
JsonConvert.DeserializeObject Method (String, Type,JsonConverter[])
Deserializes the JSON to the specified .NET type.

Namespace: Newtonsoft.Json
Assembly: SimplSharpNewtonsoft (in SimplSharpNewtonsoft.dll)
Syntax
C#
public static Object DeserializeObject(
	string value,
	Type type,
	params JsonConverter[] converters
)

Parameters

value
Type: System.String
The JSON to deserialize.
type
Type: System.Type
The type of the object to deserialize.
converters
Type:Newtonsoft.Json.JsonConverter[]
Converters to use while deserializing.

Return Value

Type: Object
The deserialized object from the JSON string.
See Also