IDataSourceProvider.GetResolvedSelectedDataSource Method

Definition

Gets the selected data member from the selected data source.

public:
 System::Collections::IEnumerable ^ GetResolvedSelectedDataSource();
public System.Collections.IEnumerable GetResolvedSelectedDataSource ();
abstract member GetResolvedSelectedDataSource : unit -> System.Collections.IEnumerable
Public Function GetResolvedSelectedDataSource () As IEnumerable

Returns

The selected data member from the selected data source, if the control allows the user to select an IListSource (such as a DataSet) for the data source, and provides a DataMember property to select a particular list (or DataTable) within the data source.

Examples

The following code example implements the GetResolvedSelectedDataSource and GetSelectedDataSource methods of the IDataSourceProvider interface. The GetSelectedDataSource method gets an arbitrary object as the data source, and this implementation of the GetResolvedSelectedDataSource method converts that object into an IEnumerable object.

<FileName>databounddesigner.vb</FileName>
<RelevantItems>
  <Reference>System.Web.UI.Design.IDataSourceProvider.GetResolvedSelectedDataSource</Reference>
  <Reference>System.Web.UI.Design.IDataSourceProvider.GetSelectedDataSource</Reference>
</RelevantItems>

Applies to