C1.AspNetCore.Mvc Assembly / C1.JsonNet Namespace / JsonHelper Class / DeserializeObject Method / DeserializeObject(String,JsonSetting) Method
The object to deserialize.
The JsonSetting used to deserialize the object. If this is null, default serialization settings will be used.

In This Topic
DeserializeObject(String,JsonSetting) Method
In This Topic
Deserializes the JSON to the specified .NET type using JsonSetting.
Syntax
'Declaration
 
Public Overloads Shared Function DeserializeObject( _
   ByVal strJson As String, _
   Optional ByVal js As JsonSetting _
) As Object
 

Parameters

strJson
The object to deserialize.
js
The JsonSetting used to deserialize the object. If this is null, default serialization settings will be used.

Return Value

The deserialized object from the JSON string.
See Also