Exemplo n.º 1
0
 /// <summary>
 /// Invokes the caught unhandled exception event.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
 internal void InvokeCaughtException(object sender, CaughtExceptionEventArgs e)
 {
     if (CaughtException != null)
     {
         CaughtException(this, e);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Invokes the caught unhandled exception event.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
 internal void InvokeCaughtException(object sender, CaughtExceptionEventArgs e)
 {
     if (CaughtException != null)
         CaughtException(this, e);
 }