Deserializer Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.