コード例 #1
0
 public void PrintStatusReport(object sender, UpdateStatusArgs e)
 {
     Console.WriteLine(e.Status);
 }
コード例 #2
0
 /// <summary>
 /// Saves the status report to a file
 /// </summary>
 private async void SaveToFile(object sender, UpdateStatusArgs e)
 {
     await logger.LogToFile(fileName, e.Status, true);
 }