public virtual void SetInt1(IList <int> int1, BAsyncResult <Object> asyncResult)
        {
            BRequest_RemoteListTypes_setInt1 req = new BRequest_RemoteListTypes_setInt1();

            req.int1Value = int1;
            transport.sendMethod(req, asyncResult);
        }
        public override void write(Object obj1, BOutput bout1, long version)
        {
            BRequest_RemoteListTypes_setInt1 obj = (BRequest_RemoteListTypes_setInt1)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.int1Value, false, byps.test.api.BSerializer_181681714.instance);
        }
        // checkpoint byps.gen.cs.GenRemoteStub:133
        public async Task SetInt1Async(IList <int> int1)
        {
            BRequest_RemoteListTypes_setInt1 req = new BRequest_RemoteListTypes_setInt1();

            req.int1Value = int1;
            Task <Object> task = Task <Object> .Factory.FromAsync(transport.BeginSend <Object>, transport.EndSend <Object>, req, null);

            await task;
        }
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin bin = (BInputBin)bin1;
            BRequest_RemoteListTypes_setInt1 obj = (BRequest_RemoteListTypes_setInt1)(obj1 != null ? obj1 : bin.onObjectCreated(new BRequest_RemoteListTypes_setInt1()));

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.int1Value = (IList <int>)bin.readObj(false, null);

            return(obj);
        }
		// checkpoint byps.gen.cs.GenRemoteStub:133
		public async Task SetInt1Async(IList<int> int1){
			BRequest_RemoteListTypes_setInt1 req = new BRequest_RemoteListTypes_setInt1();			
			req.int1Value = int1;
			Task<Object> task = Task<Object>.Factory.FromAsync(transport.BeginSend<Object>, transport.EndSend<Object>, req, null);
			await task;
		}
		public virtual void SetInt1(IList<int> int1, BAsyncResult<Object> asyncResult) {
			BRequest_RemoteListTypes_setInt1 req = new BRequest_RemoteListTypes_setInt1();			
			req.int1Value = int1;
			transport.sendMethod(req, asyncResult);
		}