SIPSorcery.App.OnAppUnhandledException C# (CSharp) Метод

OnAppUnhandledException() приватный Метод

private OnAppUnhandledException ( object sender, System.Windows.ApplicationUnhandledExceptionEventArgs e ) : void
sender object
e System.Windows.ApplicationUnhandledExceptionEventArgs
Результат void
        private void OnAppUnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
        {
            if (AppUnhandledException != null)
            {
                AppUnhandledException(e);
            }
        }