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)
3 references to PromptForStringAsync
aspire (2)
Interaction\ConsoleInteractionService.cs (1)
161return PromptForStringAsync(promptText, defaultValue, validator, isSecret: false, required, cancellationToken);
Interaction\ExtensionInteractionService.cs (1)
145return await _consoleInteractionService.PromptForStringAsync(promptText, defaultValue, validator, isSecret, required, cancellationToken).ConfigureAwait(false);
Aspire.Cli.Tests (1)
Interaction\ConsoleInteractionServiceTests.cs (1)
246interactionService.PromptForStringAsync("Enter value:", null, null, false, false, CancellationToken.None));