4 implementations of AppendHtml
Microsoft.AspNetCore.Html.Abstractions (1)
HtmlContentBuilder.cs (1)
71public IHtmlContentBuilder AppendHtml(IHtmlContent? htmlContent)
Microsoft.AspNetCore.Html.Abstractions.Tests (1)
HtmlContentBuilderExtensionsTest.cs (1)
371public IHtmlContentBuilder AppendHtml(IHtmlContent content)
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Buffers\ViewBuffer.cs (1)
100public IHtmlContentBuilder AppendHtml(IHtmlContent content)
Microsoft.AspNetCore.Razor (1)
TagHelpers\TagHelperContent.cs (1)
158IHtmlContentBuilder IHtmlContentBuilder.AppendHtml(IHtmlContent content)
24 references to AppendHtml
Microsoft.AspNetCore.Html.Abstractions (10)
HtmlContentBuilder.cs (2)
122destination.AppendHtml((IHtmlContent)entry); 149destination.AppendHtml((IHtmlContent)entry);
HtmlContentBuilderExtensions.cs (8)
36builder.AppendHtml(new HtmlFormattableString(format, args)); 65builder.AppendHtml(new HtmlFormattableString(formatProvider, format, args)); 78builder.AppendHtml(HtmlString.NewLine); 94builder.AppendHtml(HtmlString.NewLine); 108builder.AppendHtml(content); 109builder.AppendHtml(HtmlString.NewLine); 125builder.AppendHtml(HtmlString.NewLine); 156builder.AppendHtml(content);
Microsoft.AspNetCore.Html.Abstractions.Tests (1)
HtmlContentBuilderExtensionsTest.cs (1)
393destination.AppendHtml(entry);
Microsoft.AspNetCore.Mvc.ViewFeatures (8)
Buffers\ViewBuffer.cs (2)
277destination.AppendHtml((IHtmlContent)value.Value); 314destination.AppendHtml((IHtmlContent)value.Value);
DefaultDisplayTemplates.cs (1)
55selectTag.InnerHtml.AppendHtml(DefaultHtmlGenerator.GenerateOption(item, item.Text));
DefaultEditorTemplates.cs (3)
165.AppendHtml(hidden); 293valueDivTag.InnerHtml.AppendHtml(templateBuilderResult); 295valueDivTag.InnerHtml.AppendHtml(htmlHelper.ValidationMessage(
DefaultHtmlGenerator.cs (1)
888tagBuilder.InnerHtml.AppendHtml(htmlSummary);
HtmlHelper.cs (1)
760.AppendHtml(hiddenForCheckbox);
Microsoft.AspNetCore.Razor (4)
TagHelpers\DefaultTagHelperContent.cs (2)
235destination.AppendHtml((IHtmlContent)entry); 256destination.AppendHtml((IHtmlContent)entry);
TagHelpers\TagHelperAttribute.cs (2)
147destination.AppendHtml(valueAsHtmlContent); 192destination.AppendHtml(valueAsHtmlContent);
TagHelpersWebSite (1)
TagHelpers\DictionaryPrefixTestTagHelper.cs (1)
26ulTag.InnerHtml.AppendHtml(liTag);