Akka.Serialization.ByteArraySerializer.FromBinary C# (CSharp) 메소드

FromBinary() 공개 메소드

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
리턴 object
        public override object FromBinary(byte[] bytes, Type type)
        {
            return bytes;
        }
    }