Implemented interface member:
method
ShowStatusAsync<T>
Aspire.Cli.Interaction.IInteractionService.ShowStatusAsync<T>(System.String, System.Func<System.Threading.Tasks.Task<T>>)
4 references to ShowStatusAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
71
var value = await _consoleInteractionService.
ShowStatusAsync
(statusText, action).ConfigureAwait(false);
Aspire.Cli.Tests (3)
Interaction\ConsoleInteractionServiceTests.cs (3)
199
var actualResult = await interactionService.
ShowStatusAsync
(statusText, () => Task.FromResult(result)).DefaultTimeout();
313
var actualResult = await interactionService.
ShowStatusAsync
(outerStatusText, async () =>
316
return await interactionService.
ShowStatusAsync
(innerStatusText, () => Task.FromResult(expectedResult));