コード例 #1
0
        public override TLObject FromStream(Stream input)
        {
            Values      = GetObject <TLVector <TLSecureValue> >(input);
            Credentials = GetObject <TLSecureCredentialsEncrypted>(input);

            return(this);
        }
コード例 #2
0
        public override TLObject FromBytes(byte[] bytes, ref int position)
        {
            bytes.ThrowExceptionIfIncorrect(ref position, Signature);

            Values      = GetObject <TLVector <TLSecureValue> >(bytes, ref position);
            Credentials = GetObject <TLSecureCredentialsEncrypted>(bytes, ref position);

            return(this);
        }