Ejemplo n.º 1
0
 public override void Deserialize(ICustomDataReader reader)
 {
     this.DareFixedInfos = new DareInformations();
     this.DareFixedInfos.Deserialize(reader);
     this.DareVersatilesInfos = new DareVersatileInformations();
     this.DareVersatilesInfos.Deserialize(reader);
 }
Ejemplo n.º 2
0
 public DareSubscribedMessage InitDareSubscribedMessage(bool Success, bool Subscribe, double DareId, DareVersatileInformations DareVersatilesInfos)
 {
     this.Success             = Success;
     this.Subscribe           = Subscribe;
     this.DareId              = DareId;
     this.DareVersatilesInfos = DareVersatilesInfos;
     return(this);
 }
Ejemplo n.º 3
0
        public override void Deserialize(ICustomDataReader reader)
        {
            byte box = reader.ReadByte();

            this.Success             = BooleanByteWrapper.GetFlag(box, 0);
            this.Subscribe           = BooleanByteWrapper.GetFlag(box, 1);
            this.DareId              = reader.ReadDouble();
            this.DareVersatilesInfos = new DareVersatileInformations();
            this.DareVersatilesInfos.Deserialize(reader);
        }
Ejemplo n.º 4
0
 public DareInformationsMessage InitDareInformationsMessage(DareInformations DareFixedInfos, DareVersatileInformations DareVersatilesInfos)
 {
     this.DareFixedInfos      = DareFixedInfos;
     this.DareVersatilesInfos = DareVersatilesInfos;
     return(this);
 }