ErrorEventArgs.GetException Método

Definición

Obtiene el objeto Exception que representa el error que se ha producido.

public virtual Exception GetException ();

Devoluciones

Exception que representa el error que se ha producido.

Ejemplos

En el ejemplo siguiente se crea una nueva instancia de ErrorEventArgs e se inicializa con .Exception A continuación, el ejemplo llama GetException a para recuperar y Exception mostrar el mensaje de error. No hay ningún formulario asociado a este código.


public static void Main(string[] args) {
   //Creates an exception with an error message.
   Exception myException= new Exception("This is an exception test");

   //Creates an ErrorEventArgs with the exception.
   ErrorEventArgs myErrorEventArgs = new ErrorEventArgs(myException);

   //Extracts the exception from the ErrorEventArgs and display it.
   Exception myReturnedException = myErrorEventArgs.GetException();
   MessageBox.Show("The returned exception is: " + myReturnedException.Message);
}

Se aplica a