private static void Progress(TransferProgress e)
 {
     try
     {
         Console.WriteLine(e.GetDataPerSecondFormatted(SuffixStyle.Windows, "{0:###,##0.0}"));
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.Message);
     }
 }