Exemplo n.º 1
0
 /// <summary>
 /// Called when the deletion of a destination system entity (identified for
 /// deletion) is about to be processed.
 /// </summary>
 /// <param name="args">The event data.</param>
 void IEventReceiver <IDeletionProcessingArgs> .Occurred(IDeletionProcessingArgs args)
 {
     this.OnDeletionProcessing(args);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Called when the deletion of a destination system entity (identified for
 /// deletion) is about to be processed.
 /// </summary>
 /// <param name="args">The event data.</param>
 public virtual void OnDeletionProcessing(IDeletionProcessingArgs args)
 {
 }
Exemplo n.º 3
0
 /// <summary>
 /// To be called when the deletion of a destination system entity (identified for
 /// deletion) is about to be processed.
 /// </summary>
 /// <param name="args">The event data.</param>
 public void DeletionProcessing(IDeletionProcessingArgs args)
 {
     this.Dispatch(args);
 }