'Declaration
Public Event Error As ErrorEventHandler
public event ErrorEventHandler Error
Event Data
The event handler receives an argument of type ErrorEventArgs containing data related to this event. The following ErrorEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Exception | The exception which caused the Event to be raised. |
Handled | True if the exception has been handled. |
See Also