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.1.1+880255d2f7380f340f56b243a51d99f2136bdae3
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