BitSharper.DownloadListener.Progress C# (CSharp) 메소드

Progress() 보호된 메소드

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.
리턴 void
        protected void Progress(double pct, DateTime date)
        {
            Console.WriteLine(string.Format("Chain download {0}% done, block date {1}", (int) pct, date));
        }