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;
        }