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)
537
Message = options.
EscapeMessageHtml
? WebUtility.HtmlEncode(message) : message;