Ejemplo n.º 1
0
 public void OnEvent(object sender, UncaughtExceptionEventArgs args)
 {
     _enclosing._uncaughtExceptions.Add(args.Exception
                                        );
 }
 public void OnEvent(object sender, UncaughtExceptionEventArgs args)
 {
     this._enclosing._uncaughtExceptions.Add(((UncaughtExceptionEventArgs)args).Exception
                                             );
 }
Ejemplo n.º 3
0
 public void OnEvent(object sender, UncaughtExceptionEventArgs args)
 {
     Assert.AreSame(exception, ((UncaughtExceptionEventArgs)args).Exception);
     executed.value = true;
 }