コード例 #1
0
 protected void OnDownload(DownloadingEventArgs e)
 {
     if (DownloadingEvent != null)
     {
         DownloadingEvent(this, e);
     }
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: shouzhuo1/MOOC_CSharp
 private static void ShowPercent(object sender, DownloadingEventArgs e)
 {
     Console.Write("\r下载" + e.Url + "......." + e.Percent + "%");
 }