UnitOfWork2AddCallBack Method (Delegate, UnitOfWorkCallBackScheduleSlot, Object) |
Adds the call back passed in, to the slot specified with the parameters specified.
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 void AddCallBack(
Delegate delegateToCall,
UnitOfWorkCallBackScheduleSlot schedulingSlot,
params Object[] parameters
)
Public Sub AddCallBack (
delegateToCall As Delegate,
schedulingSlot As UnitOfWorkCallBackScheduleSlot,
ParamArray parameters As Object()
)
Parameters
- delegateToCall
- Type: SystemDelegate
Delegate to call. - schedulingSlot
- Type: SD.LLBLGen.Pro.ORMSupportClassesUnitOfWorkCallBackScheduleSlot
Scheduling slot to call the delegate in. - parameters
- Type: SystemObject
Parameters to pass to the delegate.
Remarks will pass in the used adapter as the last parameter to the delegate.
See Also