Esempio n. 1
0
        private void CallAfterDownloadDelegate()
        {
            AfterDownloadEventDelegate handler = AfterDownload;

            if (handler != null)
            {
                handler();
            }
        }
Esempio n. 2
0
 public IDownloader After(AfterDownloadEventDelegate action)
 {
     AfterDownload = action;
     return(this);
 }
 public IDownloader After(AfterDownloadEventDelegate action)
 {
     AfterDownload = action;
     return this;
 }