 | JsonObjectSerializerDeserialize Method (ReadOnlyMemory`1Char, Type) |
Deserialize the given chars to an object of the given type.
Namespace:
SphinxConnector.FluentApi.Json
Assembly:
SphinxConnector (in SphinxConnector.dll) Version: 5.4.1
Syntaxpublic virtual Object Deserialize(
ReadOnlyMemory<char> json,
Type type
)
Public Overridable Function Deserialize (
json As ReadOnlyMemory(Of Char),
type As Type
) As Object
Parameters
- json
- Type: ReadOnlyMemoryChar
The JSON chars to construct the result from. - type
- Type: SystemType
The type to construct from the JSON chars.
Return Value
Type:
ObjectThe constructed object.
Remarks
See Also