示例#1
0
 private void OnAdded(NuGenCollectionEventArgs <T> e)
 {
     this.Initiator.InvokeEventHandlerT <NuGenCollectionEventArgs <T> >(_added, e);
 }
示例#2
0
 /// <summary>
 /// Will bubble the <see cref="Removed"/> event.
 /// </summary>
 /// <param name="e"></param>
 protected virtual void OnRemoved(NuGenCollectionEventArgs <T> e)
 {
     this.InvokeActionT <NuGenCollectionEventArgs <T> >(_removed, e);
 }
示例#3
0
 /// <summary>
 /// Will bubble the <see cref="Inserted"/> event.
 /// </summary>
 /// <param name="e"></param>
 protected virtual void OnInserted(NuGenCollectionEventArgs <T> e)
 {
     this.InvokeActionT <NuGenCollectionEventArgs <T> >(_inserted, e);
 }
示例#4
0
 private void OnAdded(NuGenCollectionEventArgs <T> e)
 {
     this.InvokeActionT <NuGenCollectionEventArgs <T> >(_added, e);
 }
示例#5
0
 private void OnRemoved(NuGenCollectionEventArgs <T> e)
 {
     this.InvokeActionT <NuGenCollectionEventArgs <T> >(_removed, e);
 }
示例#6
0
 private void OnInserted(NuGenCollectionEventArgs <T> e)
 {
     this.InvokeActionT <NuGenCollectionEventArgs <T> >(_inserted, e);
 }