/// <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);
        }
Esempio n. 2
0
 protected virtual void OnRowUpdated(EventArgs e)
 {
     RowUpdated?.Invoke(this, e);
 }
Esempio n. 3
0
 /// <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);
 }