How can I get reference to the task my code is executed within?
ISomeInterface impl = new SomeImplementation();
Task.Factory.StartNew(() => impl.MethodFromSomeInterface(), new MyState());
...
void MethodFromSomeInterface()
{
Task currentTask = Task.GetCurrentTask(); // No such method?
MyState state = (MyState) currentTask.AsyncState();
}
Since I'm calling some interface method, I can't just pass the newly created task as an additional parameter.
SomeImplementation's constructor? Even better IMO, passMyStateto the constructor and not requireTaskknowledge withinMethodFromSomeInterfaceat all. – Stephen Cleary Jul 14 '11 at 23:00MyStateinstance with the currentTask. – Reuven Bass Jul 14 '11 at 23:14MethodFromSomeInterfacemay be called concurrently within different tasks. – Reuven Bass Jul 14 '11 at 23:25