Example #1
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.nonce        = StreamingUtils.readBytes(0x10, stream);
     this.serverNonce  = StreamingUtils.readBytes(0x10, stream);
     this.pq           = StreamingUtils.readTLBytes(stream);
     this.fingerprints = StreamingUtils.readTLLongVector(stream, context);
 }
Example #2
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.imported      = StreamingUtils.readTLVector(stream, context);
     this.retryContacts = StreamingUtils.readTLLongVector(stream, context);
     this.users         = StreamingUtils.readTLVector(stream, context);
 }
Example #3
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.emoticon  = StreamingUtils.readTLString(stream);
     this.documents = StreamingUtils.readTLLongVector(stream, context);
 }
Example #4
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.flags = StreamingUtils.readInt(stream);
     this.order = StreamingUtils.readTLLongVector(stream, context);
 }
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.randomIds = StreamingUtils.readTLLongVector(stream, context);
 }
 public virtual TLLongVector deserializeResponse(InputStream stream, TLContext context) =>
 StreamingUtils.readTLLongVector(stream, context);
Example #7
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.msgIds = StreamingUtils.readTLLongVector(stream, context);
     this.info   = StreamingUtils.readTLString(stream);
 }
Example #8
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.msgIds = StreamingUtils.readTLLongVector(stream, context);
     this.query  = StreamingUtils.readTLMethod(stream, context);
 }