1 implementation of Hidden
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
401public IHtmlContent Hidden(string expression, object value, object htmlAttributes)
3 references to Hidden
Microsoft.AspNetCore.Mvc.ViewFeatures (3)
DefaultEditorTemplates.cs (1)
158var hidden = htmlHelper.Hidden(expression: null, value: model, htmlAttributes: htmlAttributesObject);
Rendering\HtmlHelperInputExtensions.cs (2)
146return htmlHelper.Hidden(expression, value: null, htmlAttributes: null); 174return htmlHelper.Hidden(expression, value, htmlAttributes: null);