Click or drag to resize
QvxServerParseJsonT Method
Deserialize JSON string to object. Requires DataContract for the class being parsed.

Namespace: QlikView.Qvx.QvxLibrary
Assembly: QvxLibrary (in QvxLibrary.dll) Version: 2.1.4.0 (2.1.4)
Syntax
C#
public static T ParseJson<T>(
	string json
)
where T : class

Parameters

json
Type: SystemString
JSON string to be deserialized

Type Parameters

T
Output class

Return Value

Type: T
Object of Output class containing data from JSON
See Also