BooleanConverter.CanConvertFrom(ITypeDescriptorContext, Type) 方法

定义

获取一个值,该值指示此转换器是否可使用指定上下文将给定源类型的对象转换为布尔对象。

public:
 override bool CanConvertFrom(System::ComponentModel::ITypeDescriptorContext ^ context, Type ^ sourceType);
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,表示要从中进行转换的类型。

返回

如果此对象可以执行转换,则为 true;否则为 false

注解

此转换器只能将布尔对象与字符串进行转换和转换。

context 参数可用于提取有关从中调用该转换器的环境的附加信息。 此参数可能为 null,因此总是需要检查。 同样,上下文对象的属性可以返回 null

适用于

另请参阅