ErrorEventArgs(Exception) Constructor

Definición

Inicializa una nueva instancia de la clase ErrorEventArgs.

public ErrorEventArgs (Exception exception);

Parámetros

exception
Exception

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 Exception y 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