DataSourceIDConverter.CanConvertFrom(ITypeDescriptorContext, Type) 方法

定义

获取一个值,该值指示此转换器是否可以将指定源类型的对象转换为转换器的本机类型。

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

参数

context
ITypeDescriptorContext

一个实现 ITypeDescriptorContext 的对象,该对象将有关上下文的信息提供给类型转换器,以便类型转换器可以执行转换。

sourceType
Type

正在为其请求转换的对象的 Type

返回

Boolean

如果 sourceType 是字符串,则为 true;否则为 false

注解

ConvertFrom方法只能从字符串进行转换,因此当 为字符串时 CanConvertFrom true ,唯 sourcetype 一返回 。

CanConvertFrom不使用 context 参数。

适用于

另请参阅