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

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