UnitOfWorkAddCallBack 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: 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. 
Remarkswill pass in the used Transaction as the last parameter to the delegate.
See Also