up vote 2 down vote favorite
share [g+] share [fb]

I know that when you run some method in parallel by calling BeginInvoke() or ThreadPool.QueueUserWorkItem(...) .NET framework is capturing ExecutionContext object that contains Code Access Security information and some other things.

What I want, is to include in ExecutionContext some data that is needed by my parallel method, but must be also captured at the moment of queuing the task.

Problem is that not always I do have control on the code that is creating this parallel task, so I must find a way to store this data before I call this external code. Thats why I thought about ExecutionContext class.

Is there any way to pass some state the parallel task when I'm not always in the control of the code that is splitting the work between threads.

link|improve this question

56% accept rate
It is unfortunate that you don't control the queueing code - captured variables or class fields would be ideal. – Marc Gravell May 10 '09 at 21:57
feedback

2 Answers

up vote 1 down vote accepted

Found it:

CallContext.LogicalSetData(...)

and

CallContext.LogicalGetData(...)
link|improve this answer
feedback

I don't know how it relates to ExecutionContext, but back in the day, we could create context-bound objects. See Context class. Ignore the fact that this particular class is for infrastructure - the article is a starting point to learn about contexts.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.