DataSourceControl.IListSource.GetList Method

Definition

Gets a list of data source controls that can be used as sources of lists of data.

 virtual System::Collections::IList ^ System.ComponentModel.IListSource.GetList() = System::ComponentModel::IListSource::GetList;
System.Collections.IList IListSource.GetList ();
abstract member System.ComponentModel.IListSource.GetList : unit -> System.Collections.IList
override this.System.ComponentModel.IListSource.GetList : unit -> System.Collections.IList
Function GetList () As IList Implements IListSource.GetList

Returns

An IList of data source controls that can be used as sources of lists of data.

Implements

Remarks

This method is used to retrieve a set of objects that can be used as sources of data. Data source controls encapsulate their lists of data as DataSourceView objects; therefore, when associated with one or more DataSourceView objects, a DataSourceControl control represents a list source object and the method returns an IList collection of one element, the DataSourceControl itself.

This method calls the static ListSourceHelper.GetList method to retrieve an IList collection of objects that can be used as sources of data. The ListSourceHelper class determines whether GetViewNames returns a valid collection of view names. If it does, the ListSourceHelper class returns an IList collection of one element, the DataSourceControl control. If GetViewNames returns null, which is the default implementation of the DataSourceControl class, the ListSourceHelper class also returns null.

Applies to

See also