3 implementations of RequestStopAsync
aspire (1)
Backchannel\AppHostBackchannel.cs (1)
34public async Task RequestStopAsync(CancellationToken cancellationToken)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
625public Task RequestStopAsync(CancellationToken cancellationToken) => Task.CompletedTask;
TestServices\TestAppHostBackchannel.cs (1)
36public Task RequestStopAsync(CancellationToken cancellationToken)
2 references to RequestStopAsync
aspire (2)
Commands\ExecCommand.cs (1)
228await backchannel.RequestStopAsync(cancellationToken);
Commands\PublishCommandBase.cs (1)
183await backchannel.RequestStopAsync(cancellationToken).ConfigureAwait(false);