System.Windows.Controls.TypeToBooleanConverter.ConvertBack C# (CSharp) Method

ConvertBack() public method

Converts a boolean value back to a type.
public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object The value that is to be converted.
targetType Type The type to which the value is to be converted. In this case it is a type.
parameter object A parameter whose type is returned.
culture System.Globalization.CultureInfo The culture information of the current culture, so that parsing can be adjusted to cultural conventions.
return object
        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
TypeToBooleanConverter