Bugsense.WPF.BugSense.DetachHandler C# (CSharp) Метод

DetachHandler() публичный статический Метод

Detaches the eventhandler from AppDomain.CurrentDomain.UnhandledException. Useful if you want to send exceptions your self.
public static DetachHandler ( ) : void
Результат void
        public static void DetachHandler()
        {
            AppDomain.CurrentDomain.UnhandledException -= UnhandledException;
        }