Intersoft ClientUI Documentation
Deserialize(Type,String) Method



The type of the target object.
The JSON string to deserialize.
Deserialize the specified JSON string to an object.
Syntax
Public Overloads Shared Function Deserialize( _
   ByVal type As Type, _
   ByVal jsonString As String _
) As Object
Dim type As Type
Dim jsonString As String
Dim value As Object
 
value = JsonSerializer.Deserialize(type, jsonString)
public static object Deserialize( 
   Type type,
   string jsonString
)
public:
static Object^ Deserialize( 
   Type^ type,
   String^ jsonString
) 

Parameters

type
The type of the target object.
jsonString
The JSON string to deserialize.

Return Value

An object as the result of deserialization.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

JsonSerializer Class
JsonSerializer Members
Overload List

Send Feedback