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
Afficher le fichier Open project: salfab/open-syno

Méthodes publiques

Méthode 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 méthode

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.
Résultat bool

CanConvertTo() public méthode

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.
Résultat bool

ConvertFrom() public méthode

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.
Résultat object

ConvertTo() public méthode

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.
Résultat object