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) 하여 구성 요소를 데이터 원본으로 사용하는 데 필요한 인터페이스 구현을 테스트할 수 있습니다.