C# Class MassEffect.Windows.Markup.TypeConverter

Inheritance: IValueConverter
Mostra file Open project: ME3Explorer/ME3Explorer

Private Properties

Property Type Description
DoConversion object

Public Methods

Method Description
Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object

Attempts to convert the specified value.

ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object

Attempts to convert the specified value back.

TypeConverter ( ) : System

Initializes a new instance of the TypeConverter class.

TypeConverter ( Type sourceType, Type targetType ) : System

Initializes a new instance of the TypeConverter class with the specified source and target types.

Private Methods

Method Description
DoConversion ( object value, Type toType, CultureInfo culture ) : object

Method Details

Convert() public method

Attempts to convert the specified value.
public Convert ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object /// The value to convert. ///
targetType System.Type /// The type of the binding target property. ///
parameter object /// The converter parameter to use. ///
culture System.Globalization.CultureInfo /// The culture to use in the converter. ///
return object

ConvertBack() public method

Attempts to convert the specified value back.
public ConvertBack ( object value, Type targetType, object parameter, CultureInfo culture ) : object
value object /// The value to convert. ///
targetType System.Type /// The type of the binding target property. ///
parameter object /// The converter parameter to use. ///
culture System.Globalization.CultureInfo /// The culture to use in the converter. ///
return object

TypeConverter() public method

Initializes a new instance of the TypeConverter class.
public TypeConverter ( ) : System
return System

TypeConverter() public method

Initializes a new instance of the TypeConverter class with the specified source and target types.
public TypeConverter ( Type sourceType, Type targetType ) : System
sourceType System.Type /// The source type (see ). ///
targetType System.Type /// The target type (see ). ///
return System