C# 클래스 OpenSyno.Converters.TypeTypeConverter

Provides a type converter to convert T:System.Type objects to and from various other representations.
상속: System.ComponentModel.TypeConverter
파일 보기 프로젝트 열기: salfab/open-syno

공개 메소드들

메소드 설명
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.

메소드 상세

CanConvertFrom() 공개 메소드

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.
리턴 bool

CanConvertTo() 공개 메소드

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.
리턴 bool

ConvertFrom() 공개 메소드

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.
리턴 object

ConvertTo() 공개 메소드

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.
리턴 object