 | JsonObjectSerializerDeserialize(ReadOnlyMemoryByte, Type) Method |
Deserialize the given bytes to an object of the given type.
Namespace: SphinxConnector.FluentApi.JsonAssembly: SphinxConnector (in SphinxConnector.dll) Version: 6.0.0
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 ReadOnlyMemoryByte
- The JSON bytes to construct the result from.
- type Type
- The type to construct from the JSON bytes.
Return Value
ObjectThe constructed object.
Remarks
See Also