3 implementations of RequestStopAsync
aspire (1)
Backchannel\AppHostBackchannel.cs (1)
35public async Task RequestStopAsync(CancellationToken cancellationToken)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
853public 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)
243await backchannel.RequestStopAsync(cancellationToken);
Commands\PipelineCommandBase.cs (1)
242await backchannel.RequestStopAsync(cancellationToken).ConfigureAwait(false);