Safely call an async method in C# without await April 8, 2021 MyAsyncMethod(). ContinueWith(t => Console.WriteLine(t.Exception), TaskContinuationOptions.OnlyOnFaulted); try { await MyAsyncMethod().ConfigureAwait(false); } catch (Exception ex) { Trace.WriteLine(ex); } References https://stackoverflow.com/questions/15522900/how-to-safely-call-an-async-method-in-c-sharp-without-await Related