Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public void AddCallBack(
	Delegate delegateToCall,
	UnitOfWorkCallBackScheduleSlot schedulingSlot,
	params Object[] parameters
)

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