26 writes to Intent
Aspire.Hosting (8)
ApplicationModel\RequiredCommandValidator.cs (1)
126Intent = MessageIntent.Warning,
Ats\InteractionExports.cs (1)
700Intent = Intent,
Dcp\DcpHost.cs (3)
175Intent = MessageIntent.Error, 560Intent = MessageIntent.Error, 579Intent = MessageIntent.Error,
Orchestrator\ParameterProcessor.cs (1)
568Intent = MessageIntent.Warning,
Pipelines\DistributedApplicationPipeline.cs (2)
97Intent = MessageIntent.Confirmation, 181Intent = MessageIntent.Warning
Aspire.Hosting.Azure (2)
AzureEnvironmentResource.cs (1)
342Intent = MessageIntent.Confirmation,
AzureProvisioningController.cs (1)
1672Intent = MessageIntent.Warning,
Aspire.Hosting.DevTunnels (2)
DevTunnelLoginManager.cs (1)
61Intent = MessageIntent.Warning,
LoggedOutNotificationManager.cs (1)
19new() { Intent = MessageIntent.Warning },
Aspire.Hosting.Docker (1)
DockerComposeEnvironmentResource.cs (1)
502Intent = MessageIntent.Confirmation,
Aspire.Hosting.EntityFrameworkCore (2)
EFResourceBuilderExtensions.cs (2)
936Intent = MessageIntent.Warning, 978Intent = MessageIntent.Warning,
Aspire.Hosting.Kubernetes (1)
Deployment\HelmDeploymentEngine.cs (1)
653Intent = MessageIntent.Confirmation,
Aspire.Hosting.Tests (1)
Publishing\PipelineActivityReporterTests.cs (1)
718Intent = 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)
274var 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)
429Assert.Equal(MessageIntent.Warning, options.Intent); 458Assert.Equal(MessageIntent.Warning, notificationOptions.Intent);
Aspire.Hosting.Tests (4)
Dcp\DcpHostNotificationTests.cs (4)
118Assert.Equal(MessageIntent.Error, notificationOptions.Intent); 161Assert.Equal(MessageIntent.Error, notificationOptions.Intent); 333Assert.Equal(MessageIntent.Error, notificationOptions.Intent); 459Assert.Equal(MessageIntent.Error, notificationOptions.Intent);