Beispiel #1
0
 public async ValueTask HandleIntegrationCreated(object sender, IntegrationCreatedEventArgs e)
 {
     foreach (var service in IntegrationCreatedServices)
     {
         await ExecuteAsync((service, e) => service.OnIntegrationCreated(e), service, e).ConfigureAwait(false);
     }
 }
Beispiel #2
0
 protected internal virtual ValueTask OnIntegrationCreated(IntegrationCreatedEventArgs e)
 => default;