Ejemplo n.º 1
0
        public DispatchArgs ToDispatchArgs(object dto)
        {
            var args = _appInfo.ToDispatchArgs(dto);

            args.AppletId = this.AppletId;
            args.From     = this.Instance;
            return(args);
        }
Ejemplo n.º 2
0
        public Task ReplyWithAsync(object dto, CancellationToken cancellation)
        {
            var reply = _appInfo.ToDispatchArgs(dto);

            return(ReplyWithAsync(reply, cancellation));
        }