3 writes to EscapeMessageHtml
Stress.AppHost (3)
Program.cs (3)
155_ = interactionService.PromptMessageBarAsync("Success <strong>bar</strong>", "The <strong>command</strong> successfully executed.", new MessageBoxInteractionOptions { Intent = MessageIntent.Success, EscapeMessageHtml = false }); 158_ = interactionService.PromptMessageBoxAsync("Success <strong>bar</strong>", "The <strong>command</strong> successfully executed.", new MessageBoxInteractionOptions { Intent = MessageIntent.Success, EscapeMessageHtml = false }); 161_ = await interactionService.PromptInputAsync("Text <strong>request</strong>", "Provide <strong>your</strong> name", "<strong>Name</strong>", "Enter <strong>your</strong> name", new InputsDialogInteractionOptions { EscapeMessageHtml = false });
1 reference to EscapeMessageHtml
Aspire.Hosting (1)
ApplicationModel\InteractionService.cs (1)
537Message = options.EscapeMessageHtml ? WebUtility.HtmlEncode(message) : message;