1 implementation of Label
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
418public IHtmlContent Label(string expression, string labelText, object htmlAttributes)
7 references to Label
Microsoft.AspNetCore.Mvc.ViewFeatures (7)
DefaultEditorTemplates.cs (1)
278var 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);