Channel9Downloader.DataAccess.WebDownloader.RaiseDownloadProgressChanged C# (CSharp) 메소드

RaiseDownloadProgressChanged() 개인적인 메소드

Raises the DownloadProgressChanged event.
private RaiseDownloadProgressChanged ( DownloadProgressChangedEventArgs e ) : void
e System.Net.DownloadProgressChangedEventArgs Event args of the event.
리턴 void
        private void RaiseDownloadProgressChanged(DownloadProgressChangedEventArgs e)
        {
            var handler = DownloadProgressChanged;
            if (handler != null)
            {
                handler(this, e);
            }
        }