2 implementations of Label
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
418
public IHtmlContent
Label
(string expression, string labelText, object htmlAttributes)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1535
public IHtmlContent
Label
(string expression, string labelText, object htmlAttributes)
8 references to Label
Microsoft.AspNetCore.Mvc.ViewFeatures (7)
DefaultEditorTemplates.cs (1)
277
var label = htmlHelper.
Label
(propertyMetadata.PropertyName, labelText: null, htmlAttributes: null);
Rendering\HtmlHelperLabelExtensions.cs (6)
24
return htmlHelper.
Label
(expression, labelText: null, htmlAttributes: null);
38
return htmlHelper.
Label
(expression, labelText, htmlAttributes: null);
112
return htmlHelper.
Label
(expression: null, labelText: null, htmlAttributes: null);
125
return htmlHelper.
Label
(expression: null, labelText: labelText, htmlAttributes: null);
142
return htmlHelper.
Label
(expression: null, labelText: null, htmlAttributes: htmlAttributes);
163
return htmlHelper.
Label
(expression: null, labelText: labelText, htmlAttributes: htmlAttributes);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
259
.Setup(h => h.
Label
(