AzureStorageAnalyticsViewer.Download.LogDownloader.OnProgressChanged C# (CSharp) Method

OnProgressChanged() public method

public OnProgressChanged ( int percent ) : void
percent int
return void
        void OnProgressChanged(int percent)
        {
            if (DownloadProgressChanged != null)
                DownloadProgressChanged.Invoke(this, new DownloadEventArgs
                {
                    Percentage=percent
                });
        }