1 implementation of IHtmlGenerator
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
DefaultHtmlGenerator.cs (1)
24public class DefaultHtmlGenerator : IHtmlGenerator
48 references to IHtmlGenerator
Microsoft.AspNetCore.Mvc.TagHelpers (38)
AnchorTagHelper.cs (4)
44/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 45public AnchorTagHelper(IHtmlGenerator generator) 54/// Gets the <see cref="IHtmlGenerator"/> used to generate the <see cref="AnchorTagHelper"/>'s output. 56protected IHtmlGenerator Generator { get; }
FormTagHelper.cs (4)
35/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 36public FormTagHelper(IHtmlGenerator generator) 54/// Gets the <see cref="IHtmlGenerator"/> used to generate the <see cref="FormTagHelper"/>'s output. 56protected IHtmlGenerator Generator { get; }
InputTagHelper.cs (6)
68/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 69public InputTagHelper(IHtmlGenerator generator) 78/// Gets the <see cref="IHtmlGenerator"/> used to generate the <see cref="InputTagHelper"/>'s output. 80protected IHtmlGenerator Generator { get; } 102/// <see cref="IHtmlGenerator.GenerateTextBox"/>. 111/// Passed through to the generated HTML in all cases. Also used to determine the <see cref="IHtmlGenerator"/>
LabelTagHelper.cs (4)
21/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 22public LabelTagHelper(IHtmlGenerator generator) 38/// Gets the <see cref="IHtmlGenerator"/> used to generate the <see cref="LabelTagHelper"/>'s output. 40protected IHtmlGenerator Generator { get; }
OptionTagHelper.cs (4)
23/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 24public OptionTagHelper(IHtmlGenerator generator) 33/// Gets the <see cref="IHtmlGenerator"/> used to generate the <see cref="OptionTagHelper"/>'s output. 35protected IHtmlGenerator Generator { get; }
SelectTagHelper.cs (4)
29/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 30public SelectTagHelper(IHtmlGenerator generator) 39/// Gets the <see cref="IHtmlGenerator"/> used to generate the <see cref="SelectTagHelper"/>'s output. 41protected IHtmlGenerator Generator { get; }
TextAreaTagHelper.cs (4)
21/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 22public TextAreaTagHelper(IHtmlGenerator generator) 31/// Gets the <see cref="IHtmlGenerator"/> used to generate the <see cref="TextAreaTagHelper"/>'s output. 33protected IHtmlGenerator Generator { get; }
ValidationMessageTagHelper.cs (4)
23/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 24public ValidationMessageTagHelper(IHtmlGenerator generator) 40/// Gets the <see cref="IHtmlGenerator"/> used to generate the <see cref="ValidationMessageTagHelper"/>'s output. 42protected IHtmlGenerator Generator { get; }
ValidationSummaryTagHelper.cs (4)
23/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 24public ValidationSummaryTagHelper(IHtmlGenerator generator) 40/// Gets the <see cref="IHtmlGenerator"/> used to generate the <see cref="ValidationSummaryTagHelper"/>'s output. 43protected IHtmlGenerator Generator { get; }
Microsoft.AspNetCore.Mvc.ViewFeatures (10)
DefaultHtmlGenerator.cs (1)
22/// Default implementation of <see cref="IHtmlGenerator"/>.
DefaultHtmlGeneratorExtensions.cs (5)
9/// Static class that adds extension methods to <see cref="IHtmlGenerator"/>. This class cannot be inherited. 16/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 26this IHtmlGenerator generator, 49/// <param name="generator">The <see cref="IHtmlGenerator"/>.</param> 58this IHtmlGenerator generator,
DependencyInjection\MvcViewFeaturesMvcCoreBuilderExtensions.cs (1)
158services.TryAddSingleton<IHtmlGenerator, DefaultHtmlGenerator>();
HtmlHelper.cs (2)
51private readonly IHtmlGenerator _htmlGenerator; 62IHtmlGenerator htmlGenerator,
HtmlHelperOfT.cs (1)
26IHtmlGenerator htmlGenerator,