public void RaiseUnhandledAsyncException(ErrorEventArgs args) { if (UnhandledAsyncException != null) { UnhandledAsyncException(this, args); } }
void unhandled_UnhandledAsyncException(object sender, ErrorEventArgs e) { OnUnhandledAsyncException(e); }