示例#1
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.geo      = StreamingUtils.readTLObject(stream, context);
     this.title    = StreamingUtils.readTLString(stream);
     this.address  = StreamingUtils.readTLString(stream);
     this.provider = StreamingUtils.readTLString(stream);
     this.venue_id = StreamingUtils.readTLString(stream);
 }
示例#2
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.flags    = StreamingUtils.readInt(stream);
     this.geoPoint = StreamingUtils.readTLObject(stream, context);
     if ((this.flags & 4) != 0)
     {
         this.replyMarkup = StreamingUtils.readTLObject(stream, context);
     }
 }
示例#3
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.flags   = StreamingUtils.readInt(stream);
     this.queryId = StreamingUtils.readLong(stream);
     this.userId  = StreamingUtils.readInt(stream);
     this.query   = StreamingUtils.readTLString(stream);
     if ((this.flags & 1) != 0)
     {
         this.geo = StreamingUtils.readTLObject(stream, context);
     }
     this.offset = StreamingUtils.readTLString(stream);
 }
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.flags    = StreamingUtils.readInt(stream);
     this.geo      = StreamingUtils.readTLObject(stream, context);
     this.title    = StreamingUtils.readTLString(stream);
     this.address  = StreamingUtils.readTLString(stream);
     this.provider = StreamingUtils.readTLString(stream);
     this.venueId  = StreamingUtils.readTLString(stream);
     if ((this.flags & 4) != 0)
     {
         this.replyMarkup = StreamingUtils.readTLObject(stream, context);
     }
 }
示例#5
0
 public virtual void setGeo(TLAbsGeoPoint geo)
 {
     this.geo = geo;
 }
示例#6
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.geo = StreamingUtils.readTLObject(stream, context);
 }
示例#7
0
 public override void DeserializeBody(BinaryReader br)
 {
     Geo = (TLAbsGeoPoint)ObjectUtils.DeserializeObject(br);
 }
示例#8
0
 public override void DeserializeBody(BinaryReader br)
 {
     geo = (TLAbsGeoPoint)ObjectUtils.DeserializeObject(br);
 }