CFXJsonSerializerDeserializeObjectT(String) 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 T DeserializeObject<T>(
string jsonData
)
Public Shared Function DeserializeObject(Of T) (
jsonData As String
) As T
Parameters
- jsonData String
- A string in JSON format which represents the CFX object
Type Parameters
- T
- The Type of the object
Return Value
TAn object of type T which is represented by the jsonData parameter
See Also