Exemplo n.º 1
0
        private void Event_Download(object sender, FileDownloadEventArgs e)
        {
            FileDownloadEventArgs ev = new FileDownloadEventArgs();

            ev.byFile = e.byFile;
            Ev_Download(this, ev);
        }
Exemplo n.º 2
0
        public void DownloadCompleted(object sender, DownloadCompletedEventArgs e)
        {
            FileDownloadEventArgs ev = new FileDownloadEventArgs();

            ev.byFile = e.Result;
            Event_Download(this, ev);
        }
Exemplo n.º 3
0
 private void Ev_Download(object sender, FileDownloadEventArgs e)
 {
     if (e.byFile == null)
     {
         b = false;
     }
     else
     {
         _by = e.byFile;
     }
 }
Exemplo n.º 4
0
 public void DownloadCompleted(object sender, DownloadCompletedEventArgs e)
 {
     FileDownloadEventArgs ev = new FileDownloadEventArgs();
     ev.byFile = e.Result;
     Event_Download(this, ev);
 }
Exemplo n.º 5
0
 private void Event_Download(object sender, FileDownloadEventArgs e)
 {
      FileDownloadEventArgs ev = new FileDownloadEventArgs();
     ev.byFile = e.byFile;
     Ev_Download(this, ev);
 }