ErrorEventArgs Constructor
.NET Framework 4.5
Initializes a new instance of the ErrorEventArgs class.
Namespace: System.IO
Assembly: System (in System.dll)
The following example creates a new instance of ErrorEventArgs and initializes it with an Exception. Then the example calls GetException to retrieve the Exception and display the error message. There is no form associated with this code.
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); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.