2 implementations of Hidden
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
401public IHtmlContent Hidden(string expression, object value, object htmlAttributes)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1525public IHtmlContent Hidden(string name, object value, object htmlAttributes)
3 references to Hidden
Microsoft.AspNetCore.Mvc.ViewFeatures (3)
DefaultEditorTemplates.cs (1)
157var 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);