2 implementations of RadioButton
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
564public IHtmlContent RadioButton(string expression, object value, bool? isChecked, object htmlAttributes)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1563public IHtmlContent RadioButton(string name, 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);