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

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

Detach the handler globally.
private DetachHandler ( ) : void
Результат void
        private void DetachHandler()
        {
            #if SILVERLIGHT
            //NOTE: This may not work for console hosted scenarios
            Application.Current.UnhandledException -= OnGlobalException;
            #else
            AppDomain.CurrentDomain.UnhandledException -= OnGlobalException;
            #endif
        }