|   | ManagedThreadPoolQueueUserWorkItem(ParameterizedThreadStart) Method | 
        
        
            Queues a work item for processing on the managed thread pool
            
        
        Namespace: GSF.ThreadingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic static ManagedThread QueueUserWorkItem(
	ParameterizedThreadStart callback
)
Public Shared Function QueueUserWorkItem ( 
	callback As ParameterizedThreadStart
) As ManagedThread
public:
static ManagedThread^ QueueUserWorkItem(
	ParameterizedThreadStart^ callback
)
static member QueueUserWorkItem : 
        callback : ParameterizedThreadStart -> ManagedThread GSF.Threading.ManagedThreadPool.QueueUserWorkItem = function(callback);
Parameters
- callback  ParameterizedThreadStart
- A WaitCallback representing the method to execute.
Return Value
ManagedThreadReference to queued thread
 Remarks
Remarks
            This differs from the normal thread pool QueueUserWorkItem function in that it does
            not return a success value determing if item was queued, but rather a reference to
            to the managed thread that was actually placed on the queue.
            
 See Also
See Also