public virtual void EndWatchFolder(int handle, BAsyncResult <Object> asyncResult)
        {
            BRequest_FileSystemService_endWatchFolder req = new BRequest_FileSystemService_endWatchFolder();

            req.handleValue = handle;
            transport.sendMethod(req, asyncResult);
        }
        // checkpoint byps.gen.cs.GenRemoteStub:133
        public async Task EndWatchFolderAsync(int handle)
        {
            BRequest_FileSystemService_endWatchFolder req = new BRequest_FileSystemService_endWatchFolder();

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

            await task;
        }
        public override void write(Object obj1, BOutput bout1, long version)
        {
            BRequest_FileSystemService_endWatchFolder obj = (BRequest_FileSystemService_endWatchFolder)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.handleValue);
        }
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin bin = (BInputBin)bin1;
            BRequest_FileSystemService_endWatchFolder obj = (BRequest_FileSystemService_endWatchFolder)(obj1 != null ? obj1 : bin.onObjectCreated(new BRequest_FileSystemService_endWatchFolder()));

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.handleValue = bbuf.getInt();

            return(obj);
        }
		// checkpoint byps.gen.cs.GenRemoteStub:133
		public async Task EndWatchFolderAsync(int handle){
			BRequest_FileSystemService_endWatchFolder req = new BRequest_FileSystemService_endWatchFolder();			
			req.handleValue = handle;
			Task<Object> task = Task<Object>.Factory.FromAsync(transport.BeginSend<Object>, transport.EndSend<Object>, req, null);
			await task;
		}
		public virtual void EndWatchFolder(int handle, BAsyncResult<Object> asyncResult) {
			BRequest_FileSystemService_endWatchFolder req = new BRequest_FileSystemService_endWatchFolder();			
			req.handleValue = handle;
			transport.sendMethod(req, asyncResult);
		}