Ejemplo n.º 1
0
 public async ValueTask HandleIntegrationUpdated(object sender, IntegrationUpdatedEventArgs e)
 {
     foreach (var service in IntegrationUpdatedServices)
     {
         await ExecuteAsync((service, e) => service.OnIntegrationUpdated(e), service, e).ConfigureAwait(false);
     }
 }
Ejemplo n.º 2
0
 protected internal virtual ValueTask OnIntegrationUpdated(IntegrationUpdatedEventArgs e)
 => default;