1 interface inheriting from IHtmlContentContainer
Microsoft.AspNetCore.Html.Abstractions (1)
IHtmlContentBuilder.cs (1)
9public interface IHtmlContentBuilder : IHtmlContentContainer
2 implementations of IHtmlContentContainer
Microsoft.AspNetCore.Razor (2)
TagHelpers\TagHelperAttribute.cs (1)
12public class TagHelperAttribute : IHtmlContentContainer
TagHelpers\TagHelperOutput.cs (1)
12public class TagHelperOutput : IHtmlContentContainer
25 references to IHtmlContentContainer
Microsoft.AspNetCore.Html.Abstractions (5)
HtmlContentBuilder.cs (2)
114else if (entry is IHtmlContentContainer entryAsContainer) 141else if (entry is IHtmlContentContainer entryAsContainer)
IHtmlContentContainer.cs (3)
13/// Copies the contained content of this <see cref="IHtmlContentContainer"/> into <paramref name="builder"/>. 20/// Moves the contained content of this <see cref="IHtmlContentContainer"/> into <paramref name="builder"/>. 23/// After <see cref="MoveTo"/> is called, this <see cref="IHtmlContentContainer"/> instance should be left
Microsoft.AspNetCore.Mvc.Razor (1)
RazorPageBase.cs (1)
409if (value is IHtmlContentContainer htmlContentContainer)
Microsoft.AspNetCore.Mvc.ViewFeatures (9)
Buffers\ViewBuffer.cs (4)
266IHtmlContentContainer valueAsContainer; 271else if ((valueAsContainer = value.Value as IHtmlContentContainer) != null) 303IHtmlContentContainer valueAsContainer; 308else if ((valueAsContainer = value.Value as IHtmlContentContainer) != null)
Buffers\ViewBufferTextWriter.cs (5)
110if (value is IHtmlContentContainer container) 139/// Writes an <see cref="IHtmlContentContainer"/> value. 141/// <param name="value">The <see cref="IHtmlContentContainer"/> value.</param> 142public void Write(IHtmlContentContainer value) 160if (value is IHtmlContentContainer container)
Microsoft.AspNetCore.Razor (8)
TagHelpers\DefaultTagHelperContent.cs (2)
229else if (entry is IHtmlContentContainer entryAsContainer) 250else if (entry is IHtmlContentContainer entryAsContainer)
TagHelpers\TagHelperAttribute.cs (4)
135IHtmlContentContainer valueAsHtmlContainer; 141else if ((valueAsHtmlContainer = Value as IHtmlContentContainer) != null) 180IHtmlContentContainer valueAsHtmlContainer; 186else if ((valueAsHtmlContainer = Value as IHtmlContentContainer) != null)
TagHelpers\TagHelperOutput.cs (2)
279void IHtmlContentContainer.CopyTo(IHtmlContentBuilder destination) 328void IHtmlContentContainer.MoveTo(IHtmlContentBuilder destination)
Microsoft.AspNetCore.Razor.Test (2)
TagHelpers\TagHelperOutputTest.cs (2)
1055((IHtmlContentContainer)output).CopyTo(buffer); 1075((IHtmlContentContainer)output).MoveTo(buffer);