Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

CustomLogics.GetRegisteredLogics(Type) Method

Returns the list domain logic class types that are registered for a specified Application Model interface.

Namespace: DevExpress.ExpressApp.DC

Assembly: DevExpress.ExpressApp.v19.2.dll

Declaration

public Type[] GetRegisteredLogics(
    Type forInterface
)

Parameters

Name Type Description
forInterface Type

A Type object that specifies the Application Model interface.

Returns

Type Description
Type[]

A System.Type[] array of domain logic types that are registered for the forInterface Application Model interface.

Remarks

This method is used in the scope of the ModuleBase.CustomizeLogics method, when replacing the default domain logic implementations used for the Application Model interfaces with custom ones. For additional information, refer to the ModuleBase.CustomizeLogics method description.

See Also