26 writes to Intent
Aspire.Hosting (8)
ApplicationModel\RequiredCommandValidator.cs (1)
126
Intent
= MessageIntent.Warning,
Ats\InteractionExports.cs (1)
700
Intent
= Intent,
Dcp\DcpHost.cs (3)
175
Intent
= MessageIntent.Error,
560
Intent
= MessageIntent.Error,
579
Intent
= MessageIntent.Error,
Orchestrator\ParameterProcessor.cs (1)
568
Intent
= MessageIntent.Warning,
Pipelines\DistributedApplicationPipeline.cs (2)
97
Intent
= MessageIntent.Confirmation,
181
Intent
= MessageIntent.Warning
Aspire.Hosting.Azure (2)
AzureEnvironmentResource.cs (1)
342
Intent
= MessageIntent.Confirmation,
AzureProvisioningController.cs (1)
1672
Intent
= MessageIntent.Warning,
Aspire.Hosting.DevTunnels (2)
DevTunnelLoginManager.cs (1)
61
Intent
= MessageIntent.Warning,
LoggedOutNotificationManager.cs (1)
19
new() {
Intent
= MessageIntent.Warning },
Aspire.Hosting.Docker (1)
DockerComposeEnvironmentResource.cs (1)
502
Intent
= MessageIntent.Confirmation,
Aspire.Hosting.EntityFrameworkCore (2)
EFResourceBuilderExtensions.cs (2)
936
Intent
= MessageIntent.Warning,
978
Intent
= MessageIntent.Warning,
Aspire.Hosting.Kubernetes (1)
Deployment\HelmDeploymentEngine.cs (1)
653
Intent
= MessageIntent.Confirmation,
Aspire.Hosting.Tests (1)
Publishing\PipelineActivityReporterTests.cs (1)
718
Intent
= MessageIntent.Information,
Stress.AppHost (9)
InteractionCommands.cs (9)
38
_ = interactionService.PromptNotificationAsync("Success bar", "The command successfully executed.", new NotificationInteractionOptions {
Intent
= MessageIntent.Success });
39
_ = interactionService.PromptNotificationAsync("Information bar", "The command successfully executed.", new NotificationInteractionOptions {
Intent
= MessageIntent.Information });
40
_ = interactionService.PromptNotificationAsync("Warning bar", "The command successfully executed.", new NotificationInteractionOptions {
Intent
= MessageIntent.Warning });
41
_ = interactionService.PromptNotificationAsync("Error bar", "The command successfully executed.", new NotificationInteractionOptions {
Intent
= MessageIntent.Error, LinkText = "Click here for more information", LinkUrl = "https://www.microsoft.com" });
42
_ = interactionService.PromptNotificationAsync("Confirmation bar", "The command successfully executed.", new NotificationInteractionOptions {
Intent
= MessageIntent.Confirmation });
43
_ = interactionService.PromptNotificationAsync("No dismiss", "The command successfully executed.", new NotificationInteractionOptions {
Intent
= MessageIntent.Information, ShowDismiss = false });
51
_ = interactionService.PromptNotificationAsync("Success <strong>bar</strong>", "The **command** successfully executed.", new NotificationInteractionOptions {
Intent
= MessageIntent.Success });
52
_ = interactionService.PromptNotificationAsync("Success <strong>bar</strong>", "The **command** successfully executed.", new NotificationInteractionOptions {
Intent
= MessageIntent.Success, EnableMessageMarkdown = true });
53
_ = interactionService.PromptNotificationAsync("Success <strong>bar</strong>", "Multiline 1\r\n\r\nMultiline 2", new NotificationInteractionOptions {
Intent
= MessageIntent.Success, EnableMessageMarkdown = true });
7 references to Intent
Aspire.Hosting (1)
InteractionService.cs (1)
274
var newState = new Interaction(title, message, options, new Interaction.NotificationInteractionInfo(intent: options.
Intent
?? MessageIntent.None, linkText: options.LinkText, linkUrl: options.LinkUrl), interactionCts.Token);
Aspire.Hosting.Azure.Tests (2)
AzureEnvironmentResourceExtensionsTests.cs (2)
429
Assert.Equal(MessageIntent.Warning, options.
Intent
);
458
Assert.Equal(MessageIntent.Warning, notificationOptions.
Intent
);
Aspire.Hosting.Tests (4)
Dcp\DcpHostNotificationTests.cs (4)
118
Assert.Equal(MessageIntent.Error, notificationOptions.
Intent
);
161
Assert.Equal(MessageIntent.Error, notificationOptions.
Intent
);
333
Assert.Equal(MessageIntent.Error, notificationOptions.
Intent
);
459
Assert.Equal(MessageIntent.Error, notificationOptions.
Intent
);