UnitOfWorkCallBackElement 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 UnitOfWorkCallBackElement(
Delegate delegateToCall,
bool passInTransaction,
params Object[] parameters
)
Public Sub New (
delegateToCall As Delegate,
passInTransaction As Boolean,
ParamArray parameters As Object()
)
Parameters
- delegateToCall
- Type: SystemDelegate
Delegate to call. - passInTransaction
- Type: SystemBoolean
When true, the routine assumes that the last parameter specified is the placeholder for the transaction to use (default).
When false, it won't pass in a transaction and will assume the callback has to run outside the current transaction scope - parameters
- Type: SystemObject
Parameters.
See Also