C# Class Cauldron.XAML.ValueConverters.BooleanInvertConverter

Inverts a bool value
Inheritance: ValueConverterBase
Show file Open project: reflection-emit/Cauldron

Public Methods

Method Description
OnConvert ( object value, Type targetType, object parameter, string language ) : object

Occures if a value is converted

OnConvertBack ( object value, Type targetType, object parameter, string language ) : object

Occures if a value is converted

Method Details

OnConvert() public method

Occures if a value is converted
Always throws . This method is not implemented.
public OnConvert ( object value, Type targetType, object parameter, string language ) : object
value object The value produced by the binding source.
targetType Type The type of the binding target property.
parameter object The converter parameter to use.
language string The language to use in the converter.
return object

OnConvertBack() public method

Occures if a value is converted
Always throws . This method is not implemented.
public OnConvertBack ( object value, Type targetType, object parameter, string language ) : object
value object The value that is produced by the binding target.
targetType Type The type to convert to.
parameter object The converter parameter to use.
language string The language to use in the converter.
return object