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

FromBinary() 공개 최종 메소드

public final FromBinary ( byte bytes, Type type ) : object
bytes byte
type System.Type
리턴 object
        public sealed override object FromBinary(byte[] bytes, Type type)
        {
            var manifest = TypeQualifiedNameForManifest(type);
            return FromBinary(bytes, manifest);
        }

Same methods

SerializerWithStringManifest::FromBinary ( byte binary, string manifest ) : object