Microsoft.Silverlight.Testing.Harness.GlobalExceptionHandler.AttachHandler C# (CSharp) Метод

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

Attach the handler globally.
private AttachHandler ( ) : void
Результат void
        private void AttachHandler()
        {
            #if SILVERLIGHT
            Application.Current.UnhandledException += OnGlobalException;
            #else
            AppDomain.CurrentDomain.UnhandledException+= OnGlobalException;
            #endif
        }