IDataSourceProvider.GetResolvedSelectedDataSource Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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>