4 implementations of Append
Microsoft.AspNetCore.Html.Abstractions (1)
HtmlContentBuilder.cs (1)
60public IHtmlContentBuilder Append(string? unencoded)
Microsoft.AspNetCore.Html.Abstractions.Tests (1)
HtmlContentBuilderExtensionsTest.cs (1)
365public IHtmlContentBuilder Append(string unencoded)
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Buffers\ViewBuffer.cs (1)
85public IHtmlContentBuilder Append(string unencoded)
Microsoft.AspNetCore.Razor (1)
TagHelpers\TagHelperContent.cs (1)
164IHtmlContentBuilder IHtmlContentBuilder.Append(string unencoded)
13 references to Append
Microsoft.AspNetCore.Html.Abstractions (4)
HtmlContentBuilder.cs (2)
112destination.Append(entryAsString); 139destination.Append(entryAsString);
HtmlContentBuilderExtensions.cs (2)
93builder.Append(unencoded); 141builder.Append(unencoded);
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
DefaultHtmlGenerator.cs (1)
678tagBuilder.InnerHtml.Append(value);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
Rendering\TagBuilderTest.cs (1)
169tagBuilder.InnerHtml.Append(", World!");
Microsoft.AspNetCore.Razor (6)
TagHelpers\DefaultTagHelperContent.cs (2)
227destination.Append(entryAsString); 248destination.Append(entryAsString);
TagHelpers\TagHelperAttribute.cs (4)
139destination.Append(valueAsString); 151destination.Append(Value.ToString()); 184destination.Append(valueAsString); 196destination.Append(Value.ToString());
TagHelpersWebSite (1)
TagHelpers\DictionaryPrefixTestTagHelper.cs (1)
24liTag.InnerHtml.Append(item.Value.Name);