4 implementations of AppendHtml
Microsoft.AspNetCore.Html.Abstractions (1)
HtmlContentBuilder.cs (1)
83public IHtmlContentBuilder AppendHtml(string? encoded)
Microsoft.AspNetCore.Html.Abstractions.Tests (1)
HtmlContentBuilderExtensionsTest.cs (1)
377public IHtmlContentBuilder AppendHtml(string encoded)
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Buffers\ViewBuffer.cs (1)
113public IHtmlContentBuilder AppendHtml(string encoded)
Microsoft.AspNetCore.Razor (1)
TagHelpers\TagHelperContent.cs (1)
170IHtmlContentBuilder IHtmlContentBuilder.AppendHtml(string encoded)
32 references to AppendHtml
Microsoft.AspNetCore.Html.Abstractions (2)
HtmlContentBuilderExtensions.cs (2)
124builder.AppendHtml(encoded); 172builder.AppendHtml(encoded);
Microsoft.AspNetCore.Mvc.TagHelpers (1)
ScriptTagHelper.cs (1)
440builder.AppendHtml(" ");
Microsoft.AspNetCore.Mvc.ViewFeatures (4)
Buffers\ViewBuffer.cs (2)
269destination.AppendHtml(valueAsString); 306destination.AppendHtml(valueAsString);
DefaultEditorTemplates.cs (1)
294valueDivTag.InnerHtml.AppendHtml(" ");
DefaultHtmlGenerator.cs (1)
867htmlSummary.InnerHtml.AppendHtml(HiddenListItem);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (3)
Rendering\TagBuilderTest.cs (3)
168tagBuilder.InnerHtml.AppendHtml("<span>Hello</span>"); 271tagBuilder.InnerHtml.AppendHtml("<span>Hello</span>"); 299originalTagBuilder.InnerHtml.AppendHtml("<span>Hello</span>");
Microsoft.AspNetCore.Razor (22)
TagHelpers\TagHelperAttribute.cs (6)
121destination.AppendHtml(Name); 131destination.AppendHtml(valuePrefix); 157destination.AppendHtml(valueSuffix); 166destination.AppendHtml(Name); 176destination.AppendHtml(valuePrefix); 202destination.AppendHtml(valueSuffix);
TagHelpers\TagHelperOutput.cs (16)
289destination.AppendHtml("<"); 290destination.AppendHtml(TagName); 297destination.AppendHtml(" "); 303destination.AppendHtml(" /"); 306destination.AppendHtml(">"); 320destination.AppendHtml("</"); 321destination.AppendHtml(TagName); 322destination.AppendHtml(">"); 338destination.AppendHtml("<"); 339destination.AppendHtml(TagName); 346destination.AppendHtml(" "); 352destination.AppendHtml(" /"); 355destination.AppendHtml(">"); 367destination.AppendHtml("</"); 368destination.AppendHtml(TagName); 369destination.AppendHtml(">");