Parent-Child Task Relationships in the .NET Framework 4
The Task Parallel Library in the .NET Framework 4 provides an opt-in feature that enables parent-child relationships between tasks. This relationship brings with it some additional behaviors, including that a parent task is not considered completed until all of its child tasks have completed, and that exceptions from any f...