Exemplo n.º 1
0
 public async ValueTask HandleIntegrationDeleted(object sender, IntegrationDeletedEventArgs e)
 {
     foreach (var service in IntegrationDeletedServices)
     {
         await ExecuteAsync((service, e) => service.OnIntegrationDeleted(e), service, e).ConfigureAwait(false);
     }
 }
Exemplo n.º 2
0
 protected internal virtual ValueTask OnIntegrationDeleted(IntegrationDeletedEventArgs e)
 => default;