CFXJsonSerializerDeserializeObject(String, Type) Method |
Converts a string in JSON format into the CFX object that it represents
Namespace: CFX.UtilitiesAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic static Object DeserializeObject(
string jsonData,
Type type
)
Public Shared Function DeserializeObject (
jsonData As String,
type As Type
) As Object
Parameters
- jsonData String
- A string in JSON format which represents the CFX object
- type Type
- The Type of the object
Return Value
ObjectAn object of type T which is represented by the jsonData parameter
See Also