Ejemplo n.º 1
0
 private void OnActivationError(FileCopyErrorEventArgs e)
 {
     if (ActivationError != null)
     {
         ActivationError(this, e);
     }
 }
Ejemplo n.º 2
0
 protected void OnFileCopyError(FileCopyErrorEventArgs e)
 {
     if (FileCopyError != null)
     {
         FileCopyError(this, e);
     }
 }
Ejemplo n.º 3
0
 private void fileCopyer_FileCopyError(object sender, FileCopyErrorEventArgs e)
 {
     OnActivationError(e);
 }