/// <summary> /// Updates all data and notifies the wrapped section result. /// </summary> protected void UpdateInternalData() { Update(); RowUpdated?.Invoke(this, EventArgs.Empty); SectionResult.NotifyObservers(); RowUpdateDone?.Invoke(this, EventArgs.Empty); }
protected virtual void OnRowUpdated(EventArgs e) { RowUpdated?.Invoke(this, e); }
/// <summary> /// Raises the RowUpdated event of a .NET Framework data provider. /// </summary> /// <param name="value">A <see cref="T:System.Data.Common.RowUpdatedEventArgs"/> that contains the event data. </param> protected override void OnRowUpdated(RowUpdatedEventArgs value) { RowUpdated?.Invoke(this, value); }