/// <summary>
 /// Notify that the participants list has been updated.
 /// </summary>
 /// <param name="dirForum">The forum for which the list was updated</param>
 internal void NotifyParticipantsUpdated(DirForum dirForum)
 {
     ParticipantsUpdated?.Invoke(this, dirForum);
 }
Exemple #2
0
 private void OnParticipantsUpdated()
 {
     ParticipantsUpdated?.Invoke(this, EventArgs.Empty);
 }