Bugsense.WPF.BugSense.DetachHandler C# (CSharp) Method

DetachHandler() public static method

Detaches the eventhandler from AppDomain.CurrentDomain.UnhandledException. Useful if you want to send exceptions your self.
public static DetachHandler ( ) : void
return void
        public static void DetachHandler()
        {
            AppDomain.CurrentDomain.UnhandledException -= UnhandledException;
        }