public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin  bin = (BInputBin)bin1;
            ObjKeyData obj = (ObjKeyData)(obj1 != null ? obj1 : bin.onObjectCreated(new ObjKeyData()));

            base.read(obj, bin1, version);
            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.data = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.id = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.name = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.objId = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.sdata = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.udata = bbuf.getString();
            if (version >= 900000000000021L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.odouble = bbuf.getDouble();
            }

            return(obj);
        }
        public override void write(Object obj1, BOutput bout1, long version)
        {
            base.write(obj1, bout1, version);
            ObjKeyData obj  = (ObjKeyData)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.data);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.id);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.name);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.objId);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.sdata);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.udata);
            if (version >= 900000000000021L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putDouble(obj.odouble);
            }
        }
Beispiel #3
0
 public ObjKeyData(ObjKeyData rhs) : base(rhs)
 {
     this.objIdValue   = rhs.objIdValue;
     this.idValue      = rhs.idValue;
     this.nameValue    = rhs.nameValue;
     this.dataValue    = rhs.dataValue;
     this.udataValue   = rhs.udataValue;
     this.sdataValue   = rhs.sdataValue;
     this.odoubleValue = rhs.odoubleValue;
 }