DesignTimeData.GetDataMember(IListSource, String) Method

Definition

Gets the specified data member from the specified data source.

public:
 static System::Collections::IEnumerable ^ GetDataMember(System::ComponentModel::IListSource ^ dataSource, System::String ^ dataMember);
public static System.Collections.IEnumerable GetDataMember (System.ComponentModel.IListSource dataSource, string dataMember);
static member GetDataMember : System.ComponentModel.IListSource * string -> System.Collections.IEnumerable
Public Shared Function GetDataMember (dataSource As IListSource, dataMember As String) As IEnumerable

Parameters

dataSource
IListSource

An IListSource that contains the data in which to find the member.

dataMember
String

The name of the data member to retrieve.

Returns

An object implementing IEnumerable containing the specified data member from the specified data source, if it exists.

Exceptions

dataSource is null

-or-

dataMember is null.

Remarks

This method searches the specified data source for the specified data member. If dataMember is null, the first data member in the specified data source is returned.

Applies to

See also