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

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

            // checkpoint byps.gen.cs.PrintContext:449
            obj.message = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.moreResults = bbuf.getBoolean();
            if (version >= 900000000000010L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.title = bbuf.getString();
            }
            // checkpoint byps.gen.cs.PrintContext:449
            obj.header = (IList <String>)bin.readObj(false, null);
            // checkpoint byps.gen.cs.PrintContext:449
            obj.keyNames = (IList <String>)bin.readObj(false, null);
            // checkpoint byps.gen.cs.PrintContext:449
            obj.table = (IList <IList <String> >)bin.readObj(false, null);
            if (version >= 900000016000018L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.columnProperties = (IList <IDictionary <String, String> >)bin.readObj(false, null);
            }

            return(obj);
        }
Ejemplo n.º 2
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            base.write(obj1, bout1, version);
            KeywordsDynamicResult obj  = (KeywordsDynamicResult)obj1;
            BOutputBin            bout = (BOutputBin)bout1;
            BBufferBin            bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.message);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putBoolean(obj.moreResults);
            if (version >= 900000000000010L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putString(obj.title);
            }
            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.header, false, EloixClient.IndexServer.BSerializer_2123584667.instance);
            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.keyNames, false, EloixClient.IndexServer.BSerializer_2123584667.instance);
            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.table, false, EloixClient.IndexServer.BSerializer_1489667803.instance);
            if (version >= 900000016000018L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bout.writeObj(obj.columnProperties, false, EloixClient.IndexServer.BSerializer_1319324274.instance);
            }
        }
Ejemplo n.º 3
0
 public KeywordsDynamicResult(KeywordsDynamicResult rhs) : base(rhs)
 {
     this.tableValue            = rhs.tableValue;
     this.headerValue           = rhs.headerValue;
     this.keyNamesValue         = rhs.keyNamesValue;
     this.messageValue          = rhs.messageValue;
     this.moreResultsValue      = rhs.moreResultsValue;
     this.titleValue            = rhs.titleValue;
     this.columnPropertiesValue = rhs.columnPropertiesValue;
 }