コード例 #1
0
 public MDownloadFileException(DownloadFile exFile)
     : this(null, null, exFile)
 {
 }
コード例 #2
0
 private void fireDownloadFileChangedEvent(DownloadFile file, int totalFiles, int progressedFiles)
 {
     fireDownloadFileChangedEvent(file.Type, file.Name, totalFiles, progressedFiles);
 }
コード例 #3
0
 public MDownloadFileException(string message, Exception innerException, DownloadFile exFile)
     : base(message, innerException)
 {
     ExceptionFile = exFile;
 }