Deserializer Delegate

Definition

Deserializer function.

public delegate object Deserializer(Type expected, IDeserializationContext context);
type Deserializer = delegate of Type * IDeserializationContext -> obj
Public Delegate Function Deserializer(expected As Type, context As IDeserializationContext) As Object 

Parameters

expected
Type

Expected Type to receive.

context
IDeserializationContext

The context under which this object is being deserialized.

Return Value

Rehydrated object of the specified Type read from the current position in the input stream.

Applies to