Ejemplo n.º 1
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);
     }
 }
Ejemplo n.º 2
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     base.deserializeBody(stream, context);
     this.inputGeoPoint = StreamingUtils.readTLObject(stream, context);
     this.title         = StreamingUtils.readTLString(stream);
     this.address       = StreamingUtils.readTLString(stream);
     this.provider      = StreamingUtils.readTLString(stream);
     this.venueId       = StreamingUtils.readTLString(stream);
 }
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.flags    = StreamingUtils.readInt(stream);
     this.geoPoint = 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);
     }
 }
Ejemplo n.º 4
0
 public virtual void setInputGeoPoint(TLAbsInputGeoPoint inputGeoPoint)
 {
     this.inputGeoPoint = inputGeoPoint;
 }
Ejemplo n.º 5
0
 public virtual void setGeoPoint(TLAbsInputGeoPoint value)
 {
     this.geoPoint = value;
 }
Ejemplo n.º 6
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.geoPoint = StreamingUtils.readTLObject(stream, context);
 }
Ejemplo n.º 7
0
 public override void DeserializeBody(BinaryReader br)
 {
     GeoPoint = (TLAbsInputGeoPoint)ObjectUtils.DeserializeObject(br);
 }
Ejemplo n.º 8
0
 public override void DeserializeBody(BinaryReader br)
 {
     geo_point = (TLAbsInputGeoPoint)ObjectUtils.DeserializeObject(br);
 }