Click or drag to resize

JsonObjectSerializerDeserialize(ReadOnlyMemoryChar, Type) Method

Deserialize the given chars to an object of the given type.

Namespace: SphinxConnector.FluentApi.Json
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 6.0.0
Syntax
public virtual Object Deserialize(
	ReadOnlyMemory<char> json,
	Type type
)

Parameters

json  ReadOnlyMemoryChar
The JSON chars to construct the result from.
type  Type
The type to construct from the JSON chars.

Return Value

Object
The constructed object.
Remarks
When not overridden, this method will invoke Deserialize(String, Type).
See Also