Exemplo n.º 1
0
        public virtual void UnregisterService(String token, BAsyncResult <Object> asyncResult)
        {
            BRequest_DispatcherService_unregisterService req = new BRequest_DispatcherService_unregisterService();

            req.tokenValue = token;
            transport.sendMethod(req, asyncResult);
        }
Exemplo n.º 2
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            BRequest_DispatcherService_unregisterService obj = (BRequest_DispatcherService_unregisterService)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.tokenValue);
        }
Exemplo n.º 3
0
        // checkpoint byps.gen.cs.GenRemoteStub:133
        public async Task UnregisterServiceAsync(String token)
        {
            BRequest_DispatcherService_unregisterService req = new BRequest_DispatcherService_unregisterService();

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

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

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.tokenValue = bbuf.getString();

            return(obj);
        }
Exemplo n.º 5
0
		// checkpoint byps.gen.cs.GenRemoteStub:133
		public async Task UnregisterServiceAsync(String token){
			BRequest_DispatcherService_unregisterService req = new BRequest_DispatcherService_unregisterService();			
			req.tokenValue = token;
			Task<Object> task = Task<Object>.Factory.FromAsync(transport.BeginSend<Object>, transport.EndSend<Object>, req, null);
			await task;
		}
Exemplo n.º 6
0
		public virtual void UnregisterService(String token, BAsyncResult<Object> asyncResult) {
			BRequest_DispatcherService_unregisterService req = new BRequest_DispatcherService_unregisterService();			
			req.tokenValue = token;
			transport.sendMethod(req, asyncResult);
		}