コード例 #1
0
 public async ValueTask HandleIntegrationsUpdated(object sender, IntegrationsUpdatedEventArgs e)
 {
     foreach (var service in IntegrationsUpdatedServices)
     {
         await ExecuteAsync((service, e) => service.OnIntegrationsUpdated(e), service, e).ConfigureAwait(false);
     }
 }
コード例 #2
0
 protected internal virtual ValueTask OnIntegrationsUpdated(IntegrationsUpdatedEventArgs e)
 => default;