Serializer Delegate

Definition

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.

Applies to