Click or drag to resize
Akka.NETSerializationDeserialize Method (Byte, Int32, String)
Deserializes the given array of bytes using the specified serializer id, using the optional type hint to the Serializer.

Namespace:  Akka.Serialization
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public Object Deserialize(
	byte[] bytes,
	int serializerId,
	string manifest
)

Parameters

bytes
Type: SystemByte
TBD
serializerId
Type: SystemInt32
TBD
manifest
Type: SystemString
TBD

Return Value

Type: Object
The resulting object
Exceptions
ExceptionCondition
SerializationException This exception is thrown if the system cannot find the serializer with the given serializerId or it couldn't find the given manifest with the given serializerId.
See Also