Binda.KeyValueListStrategy.GetControlValue C# (CSharp) Method

GetControlValue() public method

public GetControlValue ( Control control ) : object
control System.Windows.Forms.Control
return object
        public override object GetControlValue(Control control)
        {
            return
                control is ListControl
                    ? ((ListControl) control).SelectedValue
                    : null;
        }