Exemplo n.º 1
0
 public override void DeserializeBody(BinaryReader br)
 {
     id = br.ReadInt32();
     participants = (TLAbsChatParticipants)ObjectUtils.DeserializeObject(br);
     chat_photo = (TLAbsPhoto)ObjectUtils.DeserializeObject(br);
     notify_settings = (TLAbsPeerNotifySettings)ObjectUtils.DeserializeObject(br);
     exported_invite = (TLAbsExportedChatInvite)ObjectUtils.DeserializeObject(br);
     bot_info = (TLVector<TLBotInfo>)ObjectUtils.DeserializeVector<TLBotInfo>(br);
 }
Exemplo n.º 2
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     base.id             = StreamingUtils.readInt(stream);
     this.participants   = StreamingUtils.readTLObject(stream, context);
     base.photo          = StreamingUtils.readTLObject(stream, context);
     base.notifySettings = StreamingUtils.readTLObject(stream, context);
     base.exportedInvite = StreamingUtils.readTLObject(stream, context);
     this.botInfo        = StreamingUtils.readTLVector(stream, context);
 }
Exemplo n.º 3
0
 public override void DeserializeBody(BinaryReader br)
 {
     participants = (TLAbsChatParticipants)ObjectUtils.DeserializeObject(br);
 }
Exemplo n.º 4
0
 public override void DeserializeBody(BinaryReader br)
 {
     Participants = (TLAbsChatParticipants)ObjectUtils.DeserializeObject(br);
 }
Exemplo n.º 5
0
 public virtual void setParticipants(TLAbsChatParticipants value)
 {
     this.participants = value;
 }
Exemplo n.º 6
0
 public virtual void setParticipants(TLAbsChatParticipants participants)
 {
     this.participants = participants;
 }
Exemplo n.º 7
0
 public override void deserializeBody(InputStream stream, TLContext context)
 {
     this.participants = StreamingUtils.readTLObject(stream, context);
 }