6 references to HtmlDecode
Microsoft.AspNetCore.Identity.FunctionalTests (2)
MapIdentityApiTests.cs (2)
1365
var url = WebUtility.
HtmlDecode
(confirmationMatch.Groups[1].Value);
1377
return WebUtility.
HtmlDecode
(confirmationMatch.Groups[1].Value);
Microsoft.AspNetCore.Mvc.FunctionalTests (1)
RazorViewLocationSpecificationTest.cs (1)
121
WebUtility.
HtmlDecode
(content));
Microsoft.CodeAnalysis.Features (1)
StackTraceExplorer\StackTraceAnalyzer.cs (1)
40
callstack = WebUtility.
HtmlDecode
(callstack);
System.Web.HttpUtility (2)
System\Web\Util\HttpEncoder.cs (2)
107
internal static string? HtmlDecode(string? value) => string.IsNullOrEmpty(value) ? value : WebUtility.
HtmlDecode
(value);
113
output.Write(WebUtility.
HtmlDecode
(value));