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.FindDataMembersDerivedFrom

Finds the data members in the class whose type is derived from the specified type.

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

Parameters

type
An ICodeClass representing the data type to search for.

Return Value

An array of type ICodeDataMember representing the data members in the class that are derived from the specified class. 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