3 instantiations of OnResourceStartingContext
Aspire.Hosting (3)
Dcp\DcpExecutor.cs (3)
890await _executorEvents.PublishAsync(new OnResourceStartingContext(cancellationToken, resourceType, resource, DcpResourceName: null)).ConfigureAwait(false); 1217await _executorEvents.PublishAsync(new OnResourceStartingContext(cancellationToken, KnownResourceTypes.Container, cr.ModelResource, cr.DcpResource.Metadata.Name)).ConfigureAwait(false); 1677await _executorEvents.PublishAsync(new OnResourceStartingContext(cancellationToken, resourceType, appResource.ModelResource, appResource.DcpResource.Metadata.Name)).ConfigureAwait(false);
2 references to OnResourceStartingContext
Aspire.Hosting (2)
Orchestrator\ApplicationOrchestrator.cs (2)
43dcpExecutorEvents.Subscribe<OnResourceStartingContext>(OnResourceStarting); 97private async Task OnResourceStarting(OnResourceStartingContext context)