private static void scp_OnProgress(int transferredBytes, int totalBytes, string message) { progressBar.Update(transferredBytes, totalBytes, message); }
private static void scp_OnConnecting(int transferredBytes, int totalBytes, string message) { Console.WriteLine(); progressBar = new ConsoleProgressBar(); progressBar.Update(transferredBytes, totalBytes, message); }