NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICodeClass.FindDataMembers

Finds the data members in the class matching the specified type.

[Visual Basic]
Function FindDataMembers( _
   ByVal type As ICodeClass _
) As ICodeDataMember ()
[C#]
ICodeDataMember[] FindDataMembers(
   ICodeClass type
);
[C++]
ICodeDataMember* FindDataMembers(
   ICodeClass* type
) [] = 0;
[JScript]
function FindDataMembers(
   type : ICodeClass
) : ICodeDataMember[];

Parameters

type
An ICodeClass representing the data type of the data member to search for.

Return Value

An array of type ICodeDataMember representing the data members in the class matching the specified type. If no matching data member is found, a null reference (in Visual Basic Nothing) is returned.

See Also

ICodeClass Interface | ICodeClass Members | System.ComponentModel.Design.CodeModel Namespace