protected void OnFileDownloadFailed(Exception exception, FileDownload fileDownload)
 {
     this.FileDownloadFailed?.Invoke(this, new FileDownloadFailedEventArgs(exception, fileDownload));
 }
 public FileDownloadEventArgs(FileDownload fileDownload)
 {
     this.FileDownload = fileDownload;
 }
예제 #3
0
 public FileDownloadFailedEventArgs(Exception exception, FileDownload fileDownload)
 {
     this.Exception    = exception;
     this.FileDownload = fileDownload;
 }