SerializationFormatRegisterCustomSerializationTElement, TSerializer Method Naiad Help

[This is preliminary documentation and is subject to change.]

Registers the methods of TSerializer type as custom serialization and deserialization methods for elements of type TElement.

Namespace: Microsoft.Research.Naiad.Serialization
Assembly: Microsoft.Research.Naiad (in Microsoft.Research.Naiad.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax

C#
void RegisterCustomSerialization<TElement, TSerializer>()
where TSerializer : new(), Object, CustomSerialization<TElement>

Type Parameters

TElement
The type of element to be serialized or deserialized.
TSerializer
The type of the custom serializer.
Remarks

This must be invoked before the first Computation is activated.
See Also

Reference