TypeConverter.CanConvertFrom 方法

定义

返回该转换器是否可以将一种类型的对象转换为此转换器的类型。

重载

CanConvertFrom(Type)

返回该转换器是否可以将给定类型的对象转换为此转换器的类型。

CanConvertFrom(ITypeDescriptorContext, Type)

返回该转换器是否可以使用指定上下文将给定类型的对象转换为此转换器的类型。

CanConvertFrom(Type)

Source:
TypeConverter.cs
Source:
TypeConverter.cs
Source:
TypeConverter.cs

返回该转换器是否可以将给定类型的对象转换为此转换器的类型。

public:
 bool CanConvertFrom(Type ^ sourceType);
public bool CanConvertFrom (Type sourceType);
member this.CanConvertFrom : Type -> bool
Public Function CanConvertFrom (sourceType As Type) As Boolean

参数

sourceType
Type

一个 Type,表示要转换的类型。

返回

如果该转换器能够执行转换,则为 true;否则为 false

注解

当在此类中实现时,此方法始终返回 false。 它从不返回 true

适用于

CanConvertFrom(ITypeDescriptorContext, Type)

Source:
TypeConverter.cs
Source:
TypeConverter.cs
Source:
TypeConverter.cs

返回该转换器是否可以使用指定上下文将给定类型的对象转换为此转换器的类型。

public:
 virtual bool CanConvertFrom(System::ComponentModel::ITypeDescriptorContext ^ context, Type ^ sourceType);
public virtual bool CanConvertFrom (System.ComponentModel.ITypeDescriptorContext context, Type sourceType);
public virtual bool CanConvertFrom (System.ComponentModel.ITypeDescriptorContext? context, Type sourceType);
abstract member CanConvertFrom : System.ComponentModel.ITypeDescriptorContext * Type -> bool
override this.CanConvertFrom : System.ComponentModel.ITypeDescriptorContext * Type -> bool
Public Overridable Function CanConvertFrom (context As ITypeDescriptorContext, sourceType As Type) As Boolean

参数

context
ITypeDescriptorContext

一个 ITypeDescriptorContext,用于提供格式上下文。

sourceType
Type

一个 Type,表示要转换的类型。

返回

如果该转换器能够执行转换,则为 true;否则为 false

注解

如此类中实现的那样,除非 是 InstanceDescriptor,否则sourceType此方法返回 false

继承者说明

重写该方法以提供您自己的转换要求。

使用 context 参数提取有关调用此转换器的环境的附加信息。 此参数可以是 null,因此请始终检查它。 同样,上下文对象的属性可以返回 null

另请参阅

适用于