DataSource for Entity Framework in WPF
C1.WPF.Data.Entities Namespace / C1DataSource Class / SavedChanges Event

In This Topic
    SavedChanges Event
    In This Topic
    Occurs after a save operation is completed.
    Syntax
    '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.

    PropertyDescription
    Gets a value showing the error that occurred during a save operation.  
    Gets a value indicating whether the save operation has failed. If true, inspect the Error property for details.  
    Gets a value indicating whether the error has been marked as handled by calling MarkErrorAsHandled.  
    See Also