2 implementations of TextBox
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
677public IHtmlContent TextBox(string expression, object value, string format, object htmlAttributes)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1600public IHtmlContent TextBox(string name, object value, string format, object htmlAttributes)
5 references to TextBox
Microsoft.AspNetCore.Mvc.ViewFeatures (5)
DefaultEditorTemplates.cs (1)
450return htmlHelper.TextBox(
Rendering\HtmlHelperInputExtensions.cs (4)
433return htmlHelper.TextBox(expression, value: null, format: null, htmlAttributes: null); 461return htmlHelper.TextBox(expression, value, format: null, htmlAttributes: null); 494return htmlHelper.TextBox(expression, value, format, htmlAttributes: null); 529return htmlHelper.TextBox(expression, value, format: null, htmlAttributes: htmlAttributes);