Akka.Serialization.ByteArraySerializer.FromBinary C# (CSharp) Method

FromBinary() public method

Deserializes a byte array into an object of type type.
public FromBinary ( byte bytes, Type type ) : object
bytes byte The array containing the serialized object
type System.Type The type of object contained in the array
return object
        public override object FromBinary(byte[] bytes, Type type)
        {
            return bytes;
        }
    }