| SerializationDeserialize Method (Byte, Int32, Type) |
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.129 (1.2.3.129)
Syntax public Object Deserialize(
byte[] bytes,
int serializerId,
Type type
)
member Deserialize :
bytes : byte[] *
serializerId : int *
type : Type -> Object
Parameters
- bytes
- Type: SystemByte
TBD - serializerId
- Type: SystemInt32
TBD - type
- Type: SystemType
TBD
Return Value
Type:
ObjectThe resulting object
Exceptions Exception | Condition |
---|
SerializationException |
This exception is thrown if the system cannot find the serializer with the given serializerId.
|
See Also