Deserializer Delegate

ScaleOut Software NamedCache API
A delegate to a method that can deserialize an object previously serialized with Serializer from the supplied stream. This delegate is used to establish a custom deserialization callback through the SetCustomSerialization(Serializer, Deserializer) method.

Namespace:  Soss.Client
Assembly:  soss_namedcache (in soss_namedcache.dll) Version: 6.2.0.0
Syntax

public delegate Object Deserializer(
	Stream stream
)

Parameters

stream
Type: System.IOStream
the Stream from which the serialized object can be read

Return Value

Type: Object
the deserialized object
See Also

Reference