Serializer 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.
Serializes and deserializes values.
public delegate void Serializer(object raw, ISerializationContext context, Type expected);
public sealed class Serializer
type Serializer = delegate of obj * ISerializationContext * Type -> unit
type Serializer = class
Public Delegate Sub Serializer(raw As Object, context As ISerializationContext, expected As Type)
Public NotInheritable Class Serializer
Parameters
- raw
- Object
Input object to be serialized.
- context
- ISerializationContext
The context under which this object is being serialized.
- expected
- Type
Current Type active in this stream.