UnitOfWork2.AddCallBack 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)
Syntaxpublic 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: System.Delegate
Delegate to call. - schedulingSlot
- Type: SD.LLBLGen.Pro.ORMSupportClasses.UnitOfWorkCallBackScheduleSlot
Scheduling slot to call the delegate in. - parameters
- Type:System.Object[]
Parameters to pass to the delegate.
Remarkswill pass in the used adapter as the last parameter to the delegate.
See Also