SerializationJsonDeserializeObjectT(String, Object) Method
Deserialize a JSON string to the indicated object type.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static T JsonDeserializeObject<T>(
string value,
params Object[] converters
)
Public Shared Function JsonDeserializeObject(Of T) (
value As String,
ParamArray converters As Object()
) As T
- value String
- JSON string to deserialize.
- converters Object
- Conversion objects to use when deserializing.
- T
- Object type.
TObject with the result of deserialization.