CustomLogics.UnregisterLogic(Type, Type) Method
Unregisters a particular domain for a specified Application Model interface.
Namespace: DevExpress.ExpressApp.DC
Assembly: DevExpress.ExpressApp.v19.2.dll
Declaration
public void UnregisterLogic(
Type forInterface,
Type logicType
)
Public Sub UnregisterLogic(
forInterface As Type,
logicType As Type
)
public void UnregisterLogic(
Type forInterface,
Type logicType
)
Public Sub UnregisterLogic(
forInterface As Type,
logicType As Type
)
public void UnregisterLogic(
Type forInterface,
Type logicType
)
Public Sub UnregisterLogic(
forInterface As Type,
logicType As Type
)
Parameters
Name |
Type |
Description |
forInterface |
Type |
A Type object representing the Application Model interface for which the logicType domain logic will be unregistered.
|
logicType |
Type |
A Type object representing the domain logic class to be unregistered for the forInterface Application Model interface.
|
Parameters
Name |
Type |
Description |
forInterface |
Type |
A Type object representing the Application Model interface for which the logicType domain logic will be unregistered.
|
logicType |
Type |
A Type object representing the domain logic class to be unregistered for the forInterface Application Model interface.
|
Parameters
Name |
Type |
Description |
forInterface |
Type |
A Type object representing the Application Model interface for which the logicType domain logic will be unregistered.
|
logicType |
Type |
A Type object representing the domain logic class to be unregistered for the forInterface Application Model interface.
|
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