예제 #1
0
 /// <summary>
 /// <see cref="LazyCopyEventParser.FileNotFetched"/> event handler.
 /// </summary>
 /// <param name="sender">Event sender.</param>
 /// <param name="e">The <see cref="FileNotFetchedEventData"/> instance containing the event data.</param>
 private void NotifyFileNotFetched(object sender, FileNotFetchedEventData e)
 {
     this.FileNotFetched.Notify(this, e);
 }
 /// <summary>
 /// Invokes the <see cref="FileNotFetched"/> handles, if any.
 /// </summary>
 /// <param name="eventData">Event data.</param>
 private void InvokeFileNotFetched(FileNotFetchedEventData eventData)
 {
     this.FileNotFetched.Notify(this, eventData);
 }