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