I have a long-running Task that I\'ve implemented using the Task Parallel Library. When the Task starts, I grab snapshots of several input values and collections then perfo
As http://msdn.microsoft.com/en-us/library/dd270682.aspx points out, trying to restart a running or completed Task is not supported. It is rarely a good idea to do something that normally throws an exception, and re-using a Task is one of those things.