ITypeInfo.GetDependentTypes(Predicate<ITypeInfo>) Method
Supplies metadata on the types considered dependent on the current type.
Namespace: DevExpress.ExpressApp.DC
Assembly: DevExpress.ExpressApp.v24.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
Parameters
Name | Type | Description |
---|---|---|
filter | Predicate<ITypeInfo> | A Predicate<ITypeInfo> object which can be specified to filter the collection returned by this method. |
Returns
Type | Description |
---|---|
IEnumerable<ITypeInfo> | An IEnumerable<ITypeInfo> object which supplies metadata on the types considered dependent on the current type. |
Remarks
The following types are considered dependent:
- Types that are direct descendants of the current type.
- Types which contain fields and properties of the current type.
See Also