Пример #1
0
 public static async Task DeleteReactionAsync(string channelid, string messageid, string emoji)
 {
     try
     {
         await Task.Run(() =>
         {
             IChannelService channelservice = AuthenticatedRestFactory.GetChannelService();
             channelservice.DeleteReaction(channelid, messageid, emoji).Wait();
         });
     }
     catch (Exception exception)
     {
         App.NavigateToBugReport(exception);
     }
 }