7 writes to Message
Aspire.Hosting.Foundry (2)
HostedAgent\HostedAgentBuilderExtension.cs (1)
319
Progress = new() {
Message
= "Sending message to agent..." },
PromptAgent\PromptAgentBuilderExtensions.cs (1)
112
Progress = new() {
Message
= "Sending message to agent..." },
Aspire.Hosting.Tests (4)
ResourceCommandServiceTests.cs (4)
1744
Progress = new CommandProgressOptions {
Message
= "Processing...", Title = "Cancelable Command" }
1798
Progress = new CommandProgressOptions {
Message
= "Processing..." }
1839
Progress = new CommandProgressOptions {
Message
= "Working..." }
1870
Progress = new CommandProgressOptions {
Message
= "Processing..." }
Stress.AppHost (1)
InteractionCommands.cs (1)
984
Message
= "Running automated task..."
4 references to Message
Aspire.Hosting (4)
ApplicationModel\CommandOptions.cs (2)
102
/// When <see cref="CommandProgressOptions.
Message
"/> is not <see langword="null"/> or empty, a progress dialog
106
/// When <see langword="null"/>, or when <see cref="CommandProgressOptions.
Message
"/> is <see langword="null"/> or empty,
ApplicationModel\ResourceCommandService.cs (2)
418
if (annotation.Progress is not {
Message
: { Length: > 0 } } progressOptions)
458
var progressResult = await interactionService.PromptProgressAsync(progressOptions.
Message
, options: options, cancellationToken: cancellationToken).ConfigureAwait(false);