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