CustomLogics.IsUnregisteredLogic(Type, Type) Method
Indicates whether a particular domain logic class was unregistered for a specified Application Model interface.
Namespace: DevExpress.ExpressApp.DC
Assembly: DevExpress.ExpressApp.v19.2.dll
Declaration
public bool IsUnregisteredLogic(
Type forInterface,
Type logicType
)
Public Function IsUnregisteredLogic(
forInterface As Type,
logicType As Type
) As Boolean
public bool IsUnregisteredLogic(
Type forInterface,
Type logicType
)
Public Function IsUnregisteredLogic(
forInterface As Type,
logicType As Type
) As Boolean
public bool IsUnregisteredLogic(
Type forInterface,
Type logicType
)
Public Function IsUnregisteredLogic(
forInterface As Type,
logicType As Type
) As Boolean
Parameters
Name |
Type |
Description |
forInterface |
Type |
A Type object representing the domain logic supposedly unregistered for the forInterface Application Model interface.
|
logicType |
Type |
A Type object representing the Application Model interface for which the logicType domain logic was supposedly unregistered.
|
Parameters
Name |
Type |
Description |
forInterface |
Type |
A Type object representing the domain logic supposedly unregistered for the forInterface Application Model interface.
|
logicType |
Type |
A Type object representing the Application Model interface for which the logicType domain logic was supposedly unregistered.
|
Parameters
Name |
Type |
Description |
forInterface |
Type |
A Type object representing the domain logic supposedly unregistered for the forInterface Application Model interface.
|
logicType |
Type |
A Type object representing the Application Model interface for which the logicType domain logic was supposedly unregistered.
|
Returns
Type |
Description |
Boolean |
true, if the logicType domain logic class was unregistered for the forInterface Application Model interface; otherwise, false.
|
Returns
Type |
Description |
Boolean |
true, if the logicType domain logic class was unregistered for the forInterface Application Model interface; otherwise, false.
|
Returns
Type |
Description |
Boolean |
true, if the logicType domain logic class was unregistered for the forInterface Application Model interface; otherwise, false.
|
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