'Declaration Public Event ErrorOccured As EventHandler(Of ErrorInfo)
public event EventHandler<ErrorInfo> ErrorOccured
Event Data
The event handler receives an argument of type ErrorInfo containing data related to this event. The following ErrorInfo properties provide information specific to this event.
Property | Description |
---|---|
Detail | Gets the detail of error information. |
Exception | Gets the exception. |
Info | Gets the error information. |
Severity | Gets the error level. |
See Also