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)
625
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)
228
await backchannel.
RequestStopAsync
(cancellationToken);
Commands\PublishCommandBase.cs (1)
183
await backchannel.
RequestStopAsync
(cancellationToken).ConfigureAwait(false);