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