コード例 #1
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            base.write(obj1, bout1, version);
            ProcessCopyElements obj  = (ProcessCopyElements)obj1;
            BOutputBin          bout = (BOutputBin)bout1;
            BBufferBin          bbuf = bout.bbuf;

            if (version >= 900000014000004L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putBoolean(obj.createMapping);
            }
            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.copyOptions, false, null);
            if (version >= 900000014000004L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bout.writeObj(obj.copyResult, false, null);
            }
        }
コード例 #2
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin           bin = (BInputBin)bin1;
            ProcessCopyElements obj = (ProcessCopyElements)(obj1 != null ? obj1 : bin.onObjectCreated(new ProcessCopyElements()));

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

            if (version >= 900000014000004L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.createMapping = bbuf.getBoolean();
            }
            // checkpoint byps.gen.cs.PrintContext:449
            obj.copyOptions = (EloixClient.IndexServer.CopyOptions)bin.readObj(false, null);
            if (version >= 900000014000004L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.copyResult = (EloixClient.IndexServer.CopyResult)bin.readObj(false, null);
            }

            return(obj);
        }
コード例 #3
0
 public ProcessCopyElements(ProcessCopyElements rhs) : base(rhs)
 {
     this.copyOptionsValue   = rhs.copyOptionsValue;
     this.createMappingValue = rhs.createMappingValue;
     this.copyResultValue    = rhs.copyResultValue;
 }