示例#1
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.flags   = StreamingUtils.readInt(stream);
     this.peer    = StreamingUtils.readTLObject(stream, context);
     this.q       = StreamingUtils.readTLString(stream);
     this.filter  = StreamingUtils.readTLObject(stream, context);
     this.minDate = StreamingUtils.readInt(stream);
     this.maxDate = StreamingUtils.readInt(stream);
     this.offset  = StreamingUtils.readInt(stream);
     this.maxId   = StreamingUtils.readInt(stream);
     this.limit   = StreamingUtils.readInt(stream);
 }
示例#2
0
 public virtual void setFilter(TLAbsMessagesFilter value)
 {
     this.filter = value;
 }