SIPSorcery.App.OnAppUnhandledException C# (CSharp) Method

OnAppUnhandledException() private method

private OnAppUnhandledException ( object sender, System.Windows.ApplicationUnhandledExceptionEventArgs e ) : void
sender object
e System.Windows.ApplicationUnhandledExceptionEventArgs
return void
        private void OnAppUnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
        {
            if (AppUnhandledException != null)
            {
                AppUnhandledException(e);
            }
        }