 | JsonConvert.DeserializeObject Method (String, Type,JsonConverter[]) |
Deserializes the JSON to the specified .NET type.
Namespace: Newtonsoft.JsonAssembly: SimplSharpNewtonsoft (in SimplSharpNewtonsoft.dll)
Syntaxpublic 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:
ObjectThe deserialized object from the JSON string.
See Also