Adf.Web.UI.RadioButtonListItem.RadioButtonListItem C# (CSharp) Метод

RadioButtonListItem() публичный Метод

Initializes a new instance of the Adf.Web.UI.RadioButtonListItem class with the specified label and radio button list.
public RadioButtonListItem ( System.Web.UI.WebControls.Label label, RadioButtonList list ) : System.Web.UI.WebControls
label System.Web.UI.WebControls.Label The that defines display text of the radio button list within .
list System.Web.UI.WebControls.RadioButtonList The that defines the control which will be added into .
Результат System.Web.UI.WebControls
        public RadioButtonListItem(Label label, RadioButtonList list)
        {
            List = list;

            _labelControls.Add(label);

            _itemControls.Add(list);
        }