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

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

            // checkpoint byps.gen.cs.PrintContext:449
            obj.deletedUser = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.freeUser = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.fullUser = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.ixUser = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.nbOfIgLicenses = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.nbOfServerLicenses = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.serno = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.counterList = (IList <EloixClient.Indexserver.system.LicenseCounter>)bin.readObj(false, null);

            return(obj);
        }
Esempio n. 2
0
 public LicenseReport(LicenseReport rhs) : base(rhs)
 {
     this.nbOfServerLicensesValue = rhs.nbOfServerLicensesValue;
     this.nbOfIgLicensesValue     = rhs.nbOfIgLicensesValue;
     this.sernoValue       = rhs.sernoValue;
     this.counterListValue = rhs.counterListValue;
     this.fullUserValue    = rhs.fullUserValue;
     this.ixUserValue      = rhs.ixUserValue;
     this.deletedUserValue = rhs.deletedUserValue;
     this.freeUserValue    = rhs.freeUserValue;
 }
Esempio n. 3
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            base.write(obj1, bout1, version);
            LicenseReport obj  = (LicenseReport)obj1;
            BOutputBin    bout = (BOutputBin)bout1;
            BBufferBin    bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.deletedUser);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.freeUser);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.fullUser);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.ixUser);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.nbOfIgLicenses);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.nbOfServerLicenses);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.serno);
            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.counterList, false, EloixClient.IndexServer.BSerializer_2005491011.instance);
        }