static async void Main(string[] args)
    {
        Task t = new Task(() => { throw new Exception(); });

        try
        {                
            t.Start();
            t.Wait();                
        }
        catch (AggregateException e)
        {
            // When waiting on the task, an AggregateException is thrown.
        }

        try
        {                
            t.Start();
            await t;
        }
        catch (Exception e)
        {
            // When awating on the task, the exception itself is thrown.  
            // in this case a regular Exception.
        }           
    }

In TPL, When throwing an exception inside a Task, it's wrapped with an AggregateException.
But the same is not happening when using the await keyword.
What is the explanation for that behavior ?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The goal is to make it look/act like the synchronous version. Jon Skeet does a great job explaining this in his Eduasync series, specifically this post:

http://msmvps.com/blogs/jon_skeet/archive/2011/06/22/eduasync-part-11-more-sophisticated-but-lossy-exception-handling.aspx

link|improve this answer
feedback

There is a very good blog post by Stephen Toub about exactly why this decision was made.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.