Queues the specified delegate to the thread pool, but does not propagate the calling stack to the worker thread.
- callBack
- A System.Threading.WaitCallback that represents the delegate to invoke when a thread in the thread pool picks up the work item.
- state
- The object that is passed to the delegate when serviced from the thread pool.
true if the method succeeds; OutOfMemoryException is thrown if the work item could not be queued.
Unlike the ThreadPool.QueueUserWorkItem(WaitCallback, object) method, ThreadPool.UnsafeQueueUserWorkItem(WaitCallback, object) does not propagate the calling stack to the worker thread. This allows code to lose the calling stack and thereby to elevate its security privileges.
Using ThreadPool.UnsafeQueueUserWorkItem(WaitCallback, object) could inadvertently open up a security hole. Code access security bases its permission checks on the permissions of all the callers on the stack. When work is queued on a thread pool thread using ThreadPool.UnsafeQueueUserWorkItem(WaitCallback, object), the stack of the thread pool thread will not have the context of the actual callers. Malicious code might be able exploit this to avoid permission checks.