UnitOfWorkCallBackElement2 Constructor (Delegate, Boolean, Object) |
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public UnitOfWorkCallBackElement2(
Delegate delegateToCall,
bool passInAdapter,
params Object[] parameters
)
Public Sub New (
delegateToCall As Delegate,
passInAdapter As Boolean,
ParamArray parameters As Object()
)
Parameters
- delegateToCall
- Type: SystemDelegate
Delegate to call. - passInAdapter
- Type: SystemBoolean
When true, the routine will pass in the current adapter used in commit to the delegate as the last parameter
When false, it won't pass in an adapter and will assume the callback has to run outside the current adapter's transaction scope - parameters
- Type: SystemObject
Parameters.
See Also