| SerializationDeserialize 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
)
member Deserialize :
bytes : byte[] *
serializerId : int *
manifest : string -> Object
Parameters
- bytes
- Type: SystemByte
TBD - serializerId
- Type: SystemInt32
TBD - manifest
- Type: SystemString
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
or it couldn't find the given manifest with the given serializerId.
|
See Also