 | JsonObjectSerializerDeserialize Method (ReadOnlyMemory`1Byte, Type) |
Deserialize the given bytes 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<byte> json,
Type type
)
Public Overridable Function Deserialize (
json As ReadOnlyMemory(Of Byte),
type As Type
) As Object
Parameters
- json
- Type: ReadOnlyMemoryByte
The JSON bytes to construct the result from. - type
- Type: SystemType
The type to construct from the JSON bytes.
Return Value
Type:
ObjectThe constructed object.
Remarks
See Also