'Declaration Public Event SavedChanges As EventHandler(Of SavedChangesEventArgs)
public event EventHandler<SavedChangesEventArgs> SavedChanges
Event Data
The event handler receives an argument of type SavedChangesEventArgs containing data related to this event. The following SavedChangesEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Error | Gets a value showing the error that occurred during a save operation. |
| HasError | Gets a value indicating whether the save operation has failed. If true, inspect the Error property for details. |
| IsErrorHandled | Gets a value indicating whether the error has been marked as handled by calling MarkErrorAsHandled. |
See Also