3 implementations of RequestStopAsync
aspire (1)
Backchannel\AppHostCliBackchannel.cs (1)
70
public async Task
RequestStopAsync
(CancellationToken cancellationToken)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
1095
public Task
RequestStopAsync
(CancellationToken cancellationToken) => Task.CompletedTask;
TestServices\TestAppHostCliBackchannel.cs (1)
37
public Task
RequestStopAsync
(CancellationToken cancellationToken)
3 references to RequestStopAsync
aspire (3)
Commands\PipelineCommandBase.cs (2)
357
await backchannel.
RequestStopAsync
(CancellationToken.None).ConfigureAwait(false);
384
await backchannel.
RequestStopAsync
(cancellationToken).ConfigureAwait(false);
Commands\RunCommand.cs (1)
998
await backchannel.
RequestStopAsync
(cancellationToken).ConfigureAwait(false);