Json Object SerializerDeserialize(String, Type) Method
Deserialize the given JSON string to an object of the given type.
Definition
Namespace: SphinxConnector.FluentApi.Json
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 6.1.0
The constructed object.
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 6.1.0
C#
public abstract Object Deserialize(
string json,
Type type
)VB
Public MustOverride Function Deserialize (
json As String,
type As Type
) As ObjectParameters
- json String
- The JSON string to construct the result from.
- type Type
- The type to construct from the JSON string.
Return Value
ObjectThe constructed object.