T
The type of the target object.
Intersoft ClientUI Documentation
Deserialize<T>(String) Method
See Also  Send Feedback
Intersoft.Client.Framework Namespace > JsonSerializer Class > Deserialize Method : Deserialize<T>(String) Method






jsonString
The JSON string to deserialize.
Deserialize the specified JSON string to an object.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function Deserialize(Of T)( _
   ByVal jsonString As String _
) As T
Visual Basic (Usage)Copy Code
Dim jsonString As String
Dim value As T
 
value = JsonSerializer.Deserialize(Of T)(jsonString)
C# 
public static T Deserialize<T>( 
   string jsonString
)
Delphi 
public function Deserialize( 
    jsonString: String
): T; static; 
JScript 
public static function Deserialize( 
   jsonString : String
) : T;
Managed Extensions for C++ 
public: static T* Deserialize<T>( 
   string* jsonString
) 
C++/CLI 
public:
static T^ Deserializegeneric<typename T>
( 
   String^ jsonString
) 

Parameters

jsonString
The JSON string to deserialize.

Type Parameters

T
The type of the target object.

Return Value

An object as the result of deserialization.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.