When the async method is started, it captures the current synchronization context. A way to solve this issue is to create your own synchronization context which captures the exception.
The point here is that the synchronization context posts the callback to the thread pool, but with a try/catch around it:
public class AsyncSynchronizationContext : SynchronizationContext
{
public override void Send(SendOrPostCallback d, object state)
{
try
{
d(state);
}
catch (Exception ex)
{
// Put your exception handling logic here.
Console.WriteLine(ex.Message);
}
}
public override void Post(SendOrPostCallback d, object state)
{
try
{
d(state);
}
catch (Exception ex)
{
// Put your exception handling logic here.
Console.WriteLine(ex.Message);
}
}
}
In the catch above you can put your exception handling logic.
Next, on every thread (SynchronizationContext.Current is [ThreadStatic]) where you want to execute async methods with this mechanism, you must set the current synchronization context:
SynchronizationContext.SetSynchronizationContext(new AsyncSynchronizationContext());
The complete Main example:
class Program
{
static void Main(string[] args)
{
SynchronizationContext.SetSynchronizationContext(new AsyncSynchronizationContext());
ExecuteAsyncMethod();
Console.ReadKey();
}
private static async void ExecuteAsyncMethod()
{
await AsyncMethod();
}
private static async Task AsyncMethod()
{
throw new Exception("Exception from async");
}
}
voidreturning. This is a reason to avoid usingasync voidmethods as much as possible. – svick Sep 7 '12 at 10:41async voidmethods result in deterministic behaviour; calling aTask-returning function which results in an exception and not awaiting the task will raise theUnobservedTaskExceptionevent at some semirandom point in the future when the garbage collector runs, and if that does nothing, lets the program silently continue as if everything's all right. The problem isn't withasync voidmethods, they merely expose the real problem. If you don't call aTask-returning function from anasyncmethod, there's a good chance you're doing something wrong. – hvd Sep 7 '12 at 11:53UnobservedTaskExceptionan issue there? – Pieter Sep 7 '12 at 12:18async Taskembraces the naturally nondeterministic nature of asynchronous programming. Withasync voidyou still get an exception at some semirandom point in the future, one that is (usually) passed directly to your main loop. I think the code is cleaner if you useasync Taskand ensure they areawaited. IMO. :) – Stephen Cleary Sep 7 '12 at 12:42