1 implementation of RadioButton
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
564public IHtmlContent RadioButton(string expression, object value, bool? isChecked, object htmlAttributes)
3 references to RadioButton
Microsoft.AspNetCore.Mvc.ViewFeatures (3)
Rendering\HtmlHelperInputExtensions.cs (3)
297return htmlHelper.RadioButton(expression, value, isChecked: null, htmlAttributes: null); 338return htmlHelper.RadioButton(expression, value, isChecked: null, htmlAttributes: htmlAttributes); 377return htmlHelper.RadioButton(expression, value, isChecked, htmlAttributes: null);