コード例 #1
0
 public void OnEvent(object sender, UncaughtExceptionEventArgs args)
 {
     _enclosing._uncaughtExceptions.Add(args.Exception
                                        );
 }
コード例 #2
0
 public void OnEvent(object sender, UncaughtExceptionEventArgs args)
 {
     this._enclosing._uncaughtExceptions.Add(((UncaughtExceptionEventArgs)args).Exception
                                             );
 }
コード例 #3
0
 public void OnEvent(object sender, UncaughtExceptionEventArgs args)
 {
     Assert.AreSame(exception, ((UncaughtExceptionEventArgs)args).Exception);
     executed.value = true;
 }