vote up 1 vote down star

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.

flag

54% 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 at 21:57

2 Answers

vote up 0 vote down

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|flag
vote up 0 vote down check

Found it:

CallContext.LogicalSetData(...)

and

CallContext.LogicalGetData(...)
link|flag

Your Answer

Get an OpenID
or

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