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