DataSourceIDConverter.CanConvertFrom(ITypeDescriptorContext, Type) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,表示這個轉換器是否可以將所指定來源型別中的物件轉換成轉換器的原生型別。
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 的物件,提供內容相關資訊給型別轉換子 (Type Converter),讓型別轉換子執行轉換。
傳回
如果 sourceType
是字串則為 true
,否則為 false
。
備註
方法 ConvertFrom 只能從字串轉換,因此 CanConvertFrom 唯一會在 是字串時 sourcetype
傳回 true
。
CanConvertFrom不使用 context
參數。