Skip to main content
.NET 6.0+

ITypeInfo.GetDependentTypes(Predicate<ITypeInfo>) Method

Supplies metadata on the types considered dependent on the current type.

Namespace: DevExpress.ExpressApp.DC

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

IEnumerable<ITypeInfo> GetDependentTypes(
    Predicate<ITypeInfo> filter
)

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:

  1. Types that are direct descendants of the current type.
  2. Types which contain fields and properties of the current type.
See Also