DataSourceConverter.IsValidDataSource(IComponent) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出指定的元件是否為這個轉換子的有效資料來源。
protected:
virtual bool IsValidDataSource(System::ComponentModel::IComponent ^ component);
protected virtual bool IsValidDataSource (System.ComponentModel.IComponent component);
abstract member IsValidDataSource : System.ComponentModel.IComponent -> bool
override this.IsValidDataSource : System.ComponentModel.IComponent -> bool
Protected Overridable Function IsValidDataSource (component As IComponent) As Boolean
參數
- component
- IComponent
要檢查是否為有效資料來源的元件。
傳回
如果 component
實作 IEnumerable 或 IListSource 則為 true
,否則為 false
。
備註
方法 GetStandardValues 會 IsValidDataSource 使用 方法來判斷可用為標準可存取資料來源的元件。 DataSourceConverter針對 類別,有效的資料來源是實作 或 IListSource 介面的 IEnumerable 元件。
給繼承者的注意事項
自訂資料來源轉換器可以衍生自 DataSourceConverter 類別,並覆寫 IsValidDataSource(IComponent) 方法,以測試使用元件作為資料來源所需的介面實作。