Example #1
0
 private static void DeleteWebhook(ITelegramClient telegramClient)
 {
     try
     {
         telegramClient.DeleteWebhook();
     }
     catch (Exception e)
     {
         Console.WriteLine("Could not delete webhook");
         return;
     }
     Console.WriteLine("Webhook deleted");
 }