 | JsonObjectSerializerDeserialize Method (String, Type) |
Deserialize the given JSON string to an object of the given type.
Namespace:
SphinxConnector.FluentApi.Json
Assembly:
SphinxConnector (in SphinxConnector.dll) Version: 5.4.1
Syntaxpublic abstract Object Deserialize(
string json,
Type type
)
Public MustOverride Function Deserialize (
json As String,
type As Type
) As Object
Parameters
- json
- Type: SystemString
The JSON string to construct the result from. - type
- Type: SystemType
The type to construct from the JSON string.
Return Value
Type:
ObjectThe constructed object.
See Also