Example #1
0
 private static void Subscription_Completed(object sender, SubscriptionCountEventArgs eventArgs)
 {
     Console.WriteLine($"Subscription with {eventArgs.Count} podcast(s) has finished processing");
     Console.WriteLine("Press any key to copy downloaded podcasts to USB key...");
     Console.ReadKey();
 }
Example #2
0
 private static void Subscription_Copying(object sender, SubscriptionCountEventArgs e)
 {
     Console.WriteLine($"Subscription copying to USB key, copying podcast {e.Index} of {e.Count}...");
 }
Example #3
0
 private static void Subscription_Opened(object sender, SubscriptionCountEventArgs eventArgs)
 {
     Console.WriteLine($"Subscribed to {eventArgs.Count} podcast(s)");
 }