public void Read(BinaryReader reader)
 {
     reader.ReadInt32();
     this._isLoaded       = reader.ReadBoolean();
     this._lastLoadedDate = BinarySerializerExtensions.ReadDateTime(reader);
     this.SetKeywordsData(reader.ReadGeneric <StickersKeywordsData>());
 }
Esempio n. 2
0
 public void Read(BinaryReader reader)
 {
     reader.ReadInt32();
     this._confirmationCode = reader.ReadString();
     this._phonePrefix      = reader.ReadString();
     this._phoneNumber      = reader.ReadString();
     this._createdDateTime  = BinarySerializerExtensions.ReadDateTime(reader);
 }