C# Class OpenSyno.Converters.TypeTypeConverter

Provides a type converter to convert T:System.Type objects to and from various other representations.
Inheritance: System.ComponentModel.TypeConverter
Mostrar archivo Open project: salfab/open-syno

Public Methods

Method Description
CanConvertFrom ( ITypeDescriptorContext context, Type sourceType ) : bool

Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.

CanConvertTo ( ITypeDescriptorContext context, Type destinationType ) : bool

Returns whether this converter can convert the object to the specified type, using the specified context.

ConvertFrom ( ITypeDescriptorContext context, CultureInfo culture, object value ) : object

Converts from.

ConvertTo ( ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType ) : object

Converts to.

Method Details

CanConvertFrom() public method

Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.
public CanConvertFrom ( ITypeDescriptorContext context, Type sourceType ) : bool
context ITypeDescriptorContext An that provides a format context.
sourceType System.Type A that represents the type you want to convert from.
return bool

CanConvertTo() public method

Returns whether this converter can convert the object to the specified type, using the specified context.
public CanConvertTo ( ITypeDescriptorContext context, Type destinationType ) : bool
context ITypeDescriptorContext An that provides a format context.
destinationType System.Type A that represents the type you want to convert to.
return bool

ConvertFrom() public method

Converts from.
public ConvertFrom ( ITypeDescriptorContext context, CultureInfo culture, object value ) : object
context ITypeDescriptorContext The context.
culture System.Globalization.CultureInfo The culture.
value object The value.
return object

ConvertTo() public method

Converts to.
public ConvertTo ( ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType ) : object
context ITypeDescriptorContext The context.
culture System.Globalization.CultureInfo The culture.
value object The value.
destinationType System.Type Type of the destination.
return object