public override async Task <T> InvokeAsyncT <T>(MethodInfo method, object?[] args)
 {
     try
     {
         return(await _invoker.InvokeAsyncT <T>(method, args));
     }
     catch (Exception e)
     {
         OnExceptionInvoked(new EventArgsT <Exception>(e));
         throw;
     }
 }