1 implementation of IHtmlGenerator
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
DefaultHtmlGenerator.cs (1)
24
public class DefaultHtmlGenerator :
IHtmlGenerator
48 references to IHtmlGenerator
Microsoft.AspNetCore.Mvc.TagHelpers (38)
AnchorTagHelper.cs (4)
44
/// <param name="generator">The <see cref="
IHtmlGenerator
"/>.</param>
45
public AnchorTagHelper(
IHtmlGenerator
generator)
54
/// Gets the <see cref="
IHtmlGenerator
"/> used to generate the <see cref="AnchorTagHelper"/>'s output.
56
protected
IHtmlGenerator
Generator { get; }
FormTagHelper.cs (4)
35
/// <param name="generator">The <see cref="
IHtmlGenerator
"/>.</param>
36
public FormTagHelper(
IHtmlGenerator
generator)
54
/// Gets the <see cref="
IHtmlGenerator
"/> used to generate the <see cref="FormTagHelper"/>'s output.
56
protected
IHtmlGenerator
Generator { get; }
InputTagHelper.cs (6)
68
/// <param name="generator">The <see cref="
IHtmlGenerator
"/>.</param>
69
public InputTagHelper(
IHtmlGenerator
generator)
78
/// Gets the <see cref="
IHtmlGenerator
"/> used to generate the <see cref="InputTagHelper"/>'s output.
80
protected
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>
22
public LabelTagHelper(
IHtmlGenerator
generator)
38
/// Gets the <see cref="
IHtmlGenerator
"/> used to generate the <see cref="LabelTagHelper"/>'s output.
40
protected
IHtmlGenerator
Generator { get; }
OptionTagHelper.cs (4)
23
/// <param name="generator">The <see cref="
IHtmlGenerator
"/>.</param>
24
public OptionTagHelper(
IHtmlGenerator
generator)
33
/// Gets the <see cref="
IHtmlGenerator
"/> used to generate the <see cref="OptionTagHelper"/>'s output.
35
protected
IHtmlGenerator
Generator { get; }
SelectTagHelper.cs (4)
29
/// <param name="generator">The <see cref="
IHtmlGenerator
"/>.</param>
30
public SelectTagHelper(
IHtmlGenerator
generator)
39
/// Gets the <see cref="
IHtmlGenerator
"/> used to generate the <see cref="SelectTagHelper"/>'s output.
41
protected
IHtmlGenerator
Generator { get; }
TextAreaTagHelper.cs (4)
21
/// <param name="generator">The <see cref="
IHtmlGenerator
"/>.</param>
22
public TextAreaTagHelper(
IHtmlGenerator
generator)
31
/// Gets the <see cref="
IHtmlGenerator
"/> used to generate the <see cref="TextAreaTagHelper"/>'s output.
33
protected
IHtmlGenerator
Generator { get; }
ValidationMessageTagHelper.cs (4)
23
/// <param name="generator">The <see cref="
IHtmlGenerator
"/>.</param>
24
public ValidationMessageTagHelper(
IHtmlGenerator
generator)
40
/// Gets the <see cref="
IHtmlGenerator
"/> used to generate the <see cref="ValidationMessageTagHelper"/>'s output.
42
protected
IHtmlGenerator
Generator { get; }
ValidationSummaryTagHelper.cs (4)
23
/// <param name="generator">The <see cref="
IHtmlGenerator
"/>.</param>
24
public ValidationSummaryTagHelper(
IHtmlGenerator
generator)
40
/// Gets the <see cref="
IHtmlGenerator
"/> used to generate the <see cref="ValidationSummaryTagHelper"/>'s output.
43
protected
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>
26
this
IHtmlGenerator
generator,
49
/// <param name="generator">The <see cref="
IHtmlGenerator
"/>.</param>
58
this
IHtmlGenerator
generator,
DependencyInjection\MvcViewFeaturesMvcCoreBuilderExtensions.cs (1)
158
services.TryAddSingleton<
IHtmlGenerator
, DefaultHtmlGenerator>();
HtmlHelper.cs (2)
51
private readonly
IHtmlGenerator
_htmlGenerator;
62
IHtmlGenerator
htmlGenerator,
HtmlHelperOfT.cs (1)
26
IHtmlGenerator
htmlGenerator,