Implemented interface member:
method
PromptForStringAsync
Aspire.Cli.Interaction.IInteractionService.PromptForStringAsync(System.String, System.String, System.Func<System.String, Spectre.Console.ValidationResult>, System.Boolean, System.Boolean, System.Threading.CancellationToken)
2 references to PromptForStringAsync
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
131return await _consoleInteractionService.PromptForStringAsync(promptText, defaultValue, validator, isSecret, required, cancellationToken).ConfigureAwait(false);
Aspire.Cli.Tests (1)
Interaction\ConsoleInteractionServiceTests.cs (1)
236interactionService.PromptForStringAsync("Enter value:", null, null, false, false, CancellationToken.None));