SerializationJsonDeserializeObjectT(String, Object) Method

Deserialize a JSON string to the indicated object type.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static T JsonDeserializeObject<T>(
	string value,
	params Object[] converters
)

Parameters

value  String
JSON string to deserialize.
converters  Object
Conversion objects to use when deserializing.

Type Parameters

T
Object type.

Return Value

T
Object with the result of deserialization.

See Also