7 writes to Message
Aspire.Hosting.Foundry (2)
HostedAgent\HostedAgentBuilderExtension.cs (1)
319Progress = new() { Message = "Sending message to agent..." },
PromptAgent\PromptAgentBuilderExtensions.cs (1)
112Progress = new() { Message = "Sending message to agent..." },
Aspire.Hosting.Tests (4)
ResourceCommandServiceTests.cs (4)
1744Progress = new CommandProgressOptions { Message = "Processing...", Title = "Cancelable Command" } 1798Progress = new CommandProgressOptions { Message = "Processing..." } 1839Progress = new CommandProgressOptions { Message = "Working..." } 1870Progress = new CommandProgressOptions { Message = "Processing..." }
Stress.AppHost (1)
InteractionCommands.cs (1)
984Message = "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)
418if (annotation.Progress is not { Message: { Length: > 0 } } progressOptions) 458var progressResult = await interactionService.PromptProgressAsync(progressOptions.Message, options: options, cancellationToken: cancellationToken).ConfigureAwait(false);