C# Class Eto.UnhandledExceptionEventArgs

Provides data for the event that is raised when there is an exception that is not handled otherwise
There is a System.UnhandledExceptionEventArgs class, but that doesn't seem to be available in the Core CLR, therefore we redefine it here.
Inheritance: System.EventArgs
Mostrar archivo Open project: picoe/Eto Class Usage Examples

Public Methods

Method Description
UnhandledExceptionEventArgs ( object exception, bool isTerminating ) : System

Initializes a new instance of the Eto.UnhandledExceptionEventArgs class.

Method Details

UnhandledExceptionEventArgs() public method

Initializes a new instance of the Eto.UnhandledExceptionEventArgs class.
public UnhandledExceptionEventArgs ( object exception, bool isTerminating ) : System
exception object The exception object.
isTerminating bool true if the application will terminate, otherwise false.
return System