UserFlowAddtaskType(CachedTasktaskType, Action) Method
Namespace: Firefly.Box.FlowAssembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
public void Add<taskType>(
CachedTask<taskType> cachedTask,
Action runTask
)
where taskType : class
Public Sub Add(Of taskType As Class) (
cachedTask As CachedTask(Of taskType),
runTask As Action
)
member Add :
cachedTask : CachedTask<'taskType> *
runTask : Action -> unit when 'taskType : not struct
- cachedTask CachedTasktaskType
- The that contains the task to be executed
- runTask Action
- The Action that runs the specified task
- taskType
The task to be executed is stored by
CachedTaskBase to be executed multiple times.
Usually used in conjunction with the
KeepViewVisibleAfterExit property of the sub task.
Used mainly for Master details scenarios.