Click or drag to resize
JsonSerializerUnserializeT Method
Parses the JSON string and returns the deserialized object.

Namespace: CMS.DataCom
Assembly: CMS.DataCom (in CMS.DataCom.dll) Version: 9.0.0
Syntax
C#
public T Unserialize<T>(
	string content
)
where T : class

Parameters

content
Type: SystemString
The JSON string with the serialized object.

Type Parameters

T
The type of object to deserialize.

Return Value

Type: T
The deserialized object.
See Also