I suspect you’re looking for Task.ContinueWith (or Task<T>.ContinueWith). These basically say, “When you’ve finished this task, execute this action.” However, there are various options you can specify to take more control over it.
MSDN goes into a lot more detail on this in “How to: Chain Multiple Tasks With Continuations” and “Continuation Tasks”.