'Declaration Public Event OperationError As EventHandler(Of OperationErrorEventArgs)
public event EventHandler<OperationErrorEventArgs> OperationError
Event Data
The event handler receives an argument of type OperationErrorEventArgs containing data related to this event. The following OperationErrorEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Exception | Gets the exception that represents the error. |
Handled | Gets or sets a value indicating if no additional actions are required. |
Operation | Gets the operation being executed when the error occurred. |
StatusText | Gets or sets a string displayed as StatusText. |
ThrowException | Gets or sets a value indicating whether to throw the exception. |
See Also