示例#1
0
 public MoveDocumentsInfo(MoveDocumentsInfo rhs) : base(rhs)
 {
     this.sourcePathIdValue = rhs.sourcePathIdValue;
     this.targetPathIdValue = rhs.targetPathIdValue;
     this.startDateValue    = rhs.startDateValue;
     this.endDateValue      = rhs.endDateValue;
 }
示例#2
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            base.write(obj1, bout1, version);
            MoveDocumentsInfo obj  = (MoveDocumentsInfo)obj1;
            BOutputBin        bout = (BOutputBin)bout1;
            BBufferBin        bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.sourcePathId);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.targetPathId);
            if (version >= 1000170059000005L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putString(obj.endDate);
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putString(obj.startDate);
            }
        }
示例#3
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin         bin = (BInputBin)bin1;
            MoveDocumentsInfo obj = (MoveDocumentsInfo)(obj1 != null ? obj1 : bin.onObjectCreated(new MoveDocumentsInfo()));

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

            // checkpoint byps.gen.cs.PrintContext:449
            obj.sourcePathId = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.targetPathId = bbuf.getString();
            if (version >= 1000170059000005L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.endDate = bbuf.getString();
                // checkpoint byps.gen.cs.PrintContext:449
                obj.startDate = bbuf.getString();
            }

            return(obj);
        }