3 implementations of Append
Microsoft.AspNetCore.Html.Abstractions (1)
HtmlContentBuilder.cs (1)
60public 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)
11 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.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());