LowerCaseStringConverter.CanConvertTo(ITypeDescriptorContext, Type) 方法

定义

确定一个对象能否根据指定参数转换为小写字符串。

public:
 override bool CanConvertTo(System::ComponentModel::ITypeDescriptorContext ^ ctx, Type ^ type);
public override bool CanConvertTo (System.ComponentModel.ITypeDescriptorContext ctx, Type type);
override this.CanConvertTo : System.ComponentModel.ITypeDescriptorContext * Type -> bool
Public Overrides Function CanConvertTo (ctx As ITypeDescriptorContext, type As Type) As Boolean

参数

ctx
ITypeDescriptorContext

一个实现 ITypeDescriptorContext 接口的对象。

type
Type

要转换的对象的类型。

返回

如果参数描述的对象能够转换为小写字符串对象,则为 true;否则为 false

示例

下面的示例演示如何使用此方法。

// CanConvertTo method.
Console.WriteLine("CanConvertTo: {0}",
  myLCStrConverter.CanConvertTo(ctx, testStrVal.GetType()));
' CanConvertTo method.
Console.WriteLine("CanConvertTo: {0}", _
  myLCStrConverter.CanConvertTo(ctx, testStrVal.GetType()))

注解

此方法使用实现 ITypeDescriptorContext 接口的 对象作为 ctx 参数。 此接口提供有关组件的上下文信息。 通常,此接口在设计时用于提供有关设计时容器的信息。 ITypeDescriptorContext通常用于类型转换。 如果需要自定义行为,请重写派生类中的此方法。

适用于

另请参阅