6 implementations of CopyTo
Microsoft.AspNetCore.Html.Abstractions (1)
HtmlContentBuilder.cs (1)
101public void CopyTo(IHtmlContentBuilder destination)
Microsoft.AspNetCore.Html.Abstractions.Tests (1)
HtmlContentBuilderExtensionsTest.cs (1)
389public void CopyTo(IHtmlContentBuilder destination)
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Buffers\ViewBuffer.cs (1)
254public void CopyTo(IHtmlContentBuilder destination)
Microsoft.AspNetCore.Razor (3)
TagHelpers\TagHelperAttribute.cs (1)
117public void CopyTo(IHtmlContentBuilder destination)
TagHelpers\TagHelperContent.cs (1)
136public abstract void CopyTo(IHtmlContentBuilder destination);
TagHelpers\TagHelperOutput.cs (1)
279void IHtmlContentContainer.CopyTo(IHtmlContentBuilder destination)
6 references to CopyTo
Microsoft.AspNetCore.Html.Abstractions (1)
HtmlContentBuilder.cs (1)
117entryAsContainer.CopyTo(destination);
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
Buffers\ViewBuffer.cs (1)
273valueAsContainer.CopyTo(destination);
Rendering\TagBuilder.cs (1)
63tagBuilder.InnerHtml.CopyTo(InnerHtml);
Microsoft.AspNetCore.Razor (2)
TagHelpers\DefaultTagHelperContent.cs (1)
231entryAsContainer.CopyTo(destination);
TagHelpers\TagHelperAttribute.cs (1)
143valueAsHtmlContainer.CopyTo(destination);
Microsoft.AspNetCore.Razor.Test (1)
TagHelpers\TagHelperOutputTest.cs (1)
1055((IHtmlContentContainer)output).CopyTo(buffer);