protected override void OnStop()
 {
     if (_Bot != null && _Bot.Free(this, TelegramBot.ReleaseCreateTelegramBotClient))
     {
         _Bot.Value.OnMessage -= C_OnMessage;
         _Bot = null;
     }
 }
示例#2
0
 protected override void OnStop()
 {
     if (_Bot != null)
     {
         _Bot.Free(this, TelegramBot.ReleaseCreateTelegramBotClient);
         _Bot = null;
     }
 }