What is the difference between SynchronizationContext.Send and SynchronizationContext.Post?
Send – synchronous: wait for answer (or action completed) Post – asynchronous: drop off and continue So your example uses the correct methods at the right moments. There is no need to halt the for-loop until the progress update is complete (on the contrary). And Execute does want to wait for the Action to complete, … Read more