ParallelWorkBrokerQueueWorkT Method (FuncT, DispatchQueueType, TaskCreationOptions) | 
 
            Queues the work specified in the form of the func workToQueueFunc, on the queue specified.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.Parallelization
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.10.0.0 (5.10.0)
Syntaxpublic Task<T> QueueWork<T>(
	Func<T> workToQueueFunc,
	DispatchQueueType queueToUse,
	TaskCreationOptions options
)
Public Function QueueWork(Of T) ( 
	workToQueueFunc As Func(Of T),
	queueToUse As DispatchQueueType,
	options As TaskCreationOptions
) As Task(Of T)
Parameters
- workToQueueFunc
 - Type: SystemFuncT
The work. - queueToUse
 - Type: SD.LLBLGen.Pro.ApplicationCoreDispatchQueueType
The queue to use. - options
 - Type: System.Threading.TasksTaskCreationOptions
The task creation options for the task to be created by this method. 
Type Parameters
- T
 - The type of the result of the work queue func and the continuation func
 
Return Value
Type: 
TaskT
            The task created which is dispatched on the queue specified
            
See Also