2 implementations of TextArea
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
655public IHtmlContent TextArea(string expression, string value, int rows, int columns, object htmlAttributes)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1595public IHtmlContent TextArea(string name, string value, int rows, int columns, object htmlAttributes)
5 references to TextArea
Microsoft.AspNetCore.Mvc.ViewFeatures (5)
DefaultEditorTemplates.cs (1)
220return htmlHelper.TextArea(
Rendering\HtmlHelperInputExtensions.cs (4)
647return htmlHelper.TextArea(expression, value: null, rows: 0, columns: 0, htmlAttributes: null); 678return htmlHelper.TextArea(expression, value: null, rows: 0, columns: 0, htmlAttributes: htmlAttributes); 706return htmlHelper.TextArea(expression, value, rows: 0, columns: 0, htmlAttributes: null); 740return htmlHelper.TextArea(expression, value, rows: 0, columns: 0, htmlAttributes: htmlAttributes);