AfterResourcesCreatedEvent Class

Definition

This experimental event is published after all resuorces have been created.

public class AfterResourcesCreatedEvent : Aspire.Hosting.Eventing.IDistributedApplicationEvent
type AfterResourcesCreatedEvent = class
    interface IDistributedApplicationEvent
Public Class AfterResourcesCreatedEvent
Implements IDistributedApplicationEvent
Inheritance
AfterResourcesCreatedEvent
Implements

Examples

Subscribe to the AfterResourcesCreatedEvent event and resolve the distributed application model.

var builder = DistributedApplication.CreateBuilder(args);
builder.Eventing.Subscribe<AfterResourcesCreatedEvent>(async (@event, cancellationToken) => {
  var appModel = @event.ServiceProvider.GetRequiredService<DistributedApplicationModel>();
  // Run post startup logic.
});

Remarks

Subscribing to this event is analogous to implementing the AfterResourcesCreatedAsync(DistributedApplicationModel, CancellationToken) method. This event provides access to the IServiceProvider interface to resolve dependencies including DistributedApplicationModel service which is passed in as an argument in AfterResourcesCreatedAsync(DistributedApplicationModel, CancellationToken).

Constructors

AfterResourcesCreatedEvent(IServiceProvider, DistributedApplicationModel)

This experimental event is published after all resuorces have been created.

Properties

Model

The DistributedApplicationModel instance.

Services

The IServiceProvider instance.

Applies to