- add RaiseGBaseEntryRemoved method

pull/26/head
Simon Gockner 6 years ago
parent f984fd48e5
commit 6e9cef8080
  1. 9
      GBase.Api/NotifyGBaseEntryChanged.cs

@ -27,6 +27,15 @@ namespace GBase.Api
GBaseEntryChanged?.BeginInvoke(entry, new GBaseEntryChangedEventArgs(columnName, value), GBaseEntryChangedCallback, null); GBaseEntryChanged?.BeginInvoke(entry, new GBaseEntryChangedEventArgs(columnName, value), GBaseEntryChangedCallback, null);
} }
/// <summary>
/// Raise the GBaseEntry removed (<see cref="GBaseEntryChanged"/> event without args)
/// </summary>
/// <param name="entry">The entry (sender)</param>
protected void RaiseGBaseEntryRemoved(object entry)
{
GBaseEntryChanged?.BeginInvoke(entry, null, GBaseEntryChangedCallback, null);
}
/// <summary> /// <summary>
/// Callback for the <see cref="GBaseEntryChanged"/> event /// Callback for the <see cref="GBaseEntryChanged"/> event
/// </summary> /// </summary>

Loading…
Cancel
Save