DataSourceConverter.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,可用來取得額外的內容資訊。
傳回
如果這個轉換器可以執行轉換,則為 true
,否則為 false
。
在這個類別中實作時,這個方法永遠傳回 false
。
給繼承者的注意事項
請覆寫這個方法以提供您自己的轉換需求。
context
可用來擷取此轉換程式所叫用環境的其他資訊。 這可能是 null
,所以您要隨時檢查。 此外,內容物件上的屬性也可能會傳回 null
。