BitSharper.DownloadListener.Progress C# (CSharp) Method

Progress() protected method

Called when download progress is made.
protected Progress ( double pct, System.DateTime date ) : void
pct double The percentage of chain downloaded, estimated.
date System.DateTime The date of the last block downloaded.
return void
        protected void Progress(double pct, DateTime date)
        {
            Console.WriteLine(string.Format("Chain download {0}% done, block date {1}", (int) pct, date));
        }