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