I am doing some asynchronous work on a separate thread using:
ThreadPool.QueueUserWorkItem()
and in this separate thread, I need to call HttpContext.Current
so that I can access:
HttpContext.Current.Cache
HttpContext.Current.Server
HttpContext.Current.Request
However, HttpContext.Current
is null when I create this separate thread.
Question
How do I create a new thread so that HttpContext.Current
is not null? Or is there another way I can access the Cache, Server, and Request objects?