1 write to _consoleInteractionService
aspire (1)
Interaction\ExtensionInteractionService.cs (1)
50_consoleInteractionService = consoleInteractionService;
32 references to _consoleInteractionService
aspire (32)
Interaction\ExtensionInteractionService.cs (32)
88return await _consoleInteractionService.ShowStatusAsync(statusText, action, emoji, allowMarkup).ConfigureAwait(false); 105return await _consoleInteractionService.ShowDynamicStatusAsync( 129_consoleInteractionService.ShowStatus(statusText, action, emoji, allowMarkup); 146_consoleInteractionService.ValidateResolvedStringValue(value, required, validator, binding!.SymbolDisplayName); 192return await _consoleInteractionService.PromptForStringAsync(promptText, validator, isSecret, required, binding, cancellationToken).ConfigureAwait(false); 201_consoleInteractionService.ValidateResolvedStringValue(value, required, validator, binding!.SymbolDisplayName); 262return await _consoleInteractionService.PromptForFilePathAsync(promptText, validator, directory, required, binding, retryOnValidationFailure, cancellationToken).ConfigureAwait(false); 298return await _consoleInteractionService.PromptConfirmAsync(promptText, binding, cancellationToken); 308return _consoleInteractionService.MatchChoiceOrThrow(value, binding!, choices, choiceFormatter); 336return await _consoleInteractionService.PromptForSelectionAsync(promptText, choices, choiceFormatter, binding, echoSelected, cancellationToken); 347return _consoleInteractionService.MatchChoicesOrThrow(value, binding!, validationChoices, choiceFormatter); 377return await _consoleInteractionService.PromptForSelectionsAsync(promptText, choices, choiceFormatter, preSelected, optional, binding, echoSelected, bindingChoices, cancellationToken); 386return _consoleInteractionService.DisplayIncompatibleVersionError(ex, appHostHostingSdkVersion); 399_consoleInteractionService.DisplayError(errorMessage, allowMarkup); 409_consoleInteractionService.DisplayMessage(emoji, message, allowMarkup, consoleOverride); 418_consoleInteractionService.DisplaySuccess(message, allowMarkup); 425_consoleInteractionService.DisplaySubtleMessage(message, allowMarkup); 430_consoleInteractionService.DisplaySubtleMessage(message, allowMarkup); 461_consoleInteractionService.DisplayCancellationMessage(message, consoleOverride); 468_consoleInteractionService.DisplayEmptyLine(); 481_consoleInteractionService.DisplayPlainText(text); 486get => _consoleInteractionService.Console; 487set => _consoleInteractionService.Console = value; 498_consoleInteractionService.DisplayRawText(text, consoleOverride); 507_consoleInteractionService.DisplayMarkdown(markdown, consoleOverride, maxWidth); 515_consoleInteractionService.DisplayMarkupLine(markup); 520_consoleInteractionService.DisplayVersionUpdateNotification(newerVersion, updateCommand); 525_consoleInteractionService.DisplayRenderable(renderable); 530return _consoleInteractionService.DisplayLiveAsync(initialRenderable, callback); 546_consoleInteractionService.WriteConsoleLog(message, lineNumber, type, isErrorMessage); 557_consoleInteractionService.DisplayPlainText(message); 601_consoleInteractionService.DisplayError(ex.Message);