ConfigurationConverterBase.CanConvertTo(ITypeDescriptorContext, Type) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定是否允许此转换。
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
参数
用于类型转换的 ITypeDescriptorContext 对象。
- type
- Type
要转换为的类型。
返回
如果允许转换,则为 true
;否则为 false
。
示例
以下示例代码演示如何重写 CanConvertTo 方法以创建自定义 TimeSpan 转换器类型。 此外,该示例还演示了如何在自定义节中使用此类型。
public override bool CanConvertTo(
ITypeDescriptorContext ctx, Type type)
{
return (type == typeof(string));
}
Public Overrides Function CanConvertTo( _
ByVal ctx As ITypeDescriptorContext, _
ByVal type As Type) As Boolean
Return (type.ToString() = GetType(String).ToString())
End Function 'CanConvertTo
注解
方法 CanConvertTo 确定配置文件中包含的字符串是否可以转换为相关的强类型属性。