示例#1
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            CombineAclOptions obj  = (CombineAclOptions)obj1;
            BOutputBin        bout = (BOutputBin)bout1;
            BBufferBin        bbuf = bout.bbuf;

            if (version >= 700000020000005L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putString(obj.lhsAclStr);
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putString(obj.rhsAclStr);
            }
        }
示例#2
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin         bin = (BInputBin)bin1;
            CombineAclOptions obj = (CombineAclOptions)(obj1 != null ? obj1 : bin.onObjectCreated(new CombineAclOptions()));

            BBufferBin bbuf = bin.bbuf;

            if (version >= 700000020000005L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.lhsAclStr = bbuf.getString();
                // checkpoint byps.gen.cs.PrintContext:449
                obj.rhsAclStr = bbuf.getString();
            }

            return(obj);
        }
示例#3
0
 public CombineAclOptions(CombineAclOptions rhs)
 {
     this.lhsAclStrValue = rhs.lhsAclStrValue;
     this.rhsAclStrValue = rhs.rhsAclStrValue;
 }