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