Пример #1
0
 public void OnUpdateFile(DeploymentFile file)
 {
     UpdateFile?.Invoke(new UpdateEventArgs
     {
         File = file,
     });
 }
Пример #2
0
 public void OnDownloadCompleted(DeploymentFile file)
 {
     DownloadCompleted?.Invoke(new DownloadEventArgs
     {
         File = file,
     });
 }
Пример #3
0
 public void OnStartDownload(DeploymentFile file)
 {
     StartDownload?.Invoke(new DownloadEventArgs
     {
         File = file,
     });
 }
Пример #4
0
 public void OnDownloadProgress(DeploymentFile file, int count, int index)
 {
     DownloadProgress?.Invoke(new DownloadProgressEventArgs
     {
         File  = file,
         Count = count,
         Index = index
     });
 }