Пример #1
0
 public static void DeleteMessage(string chnid, string msgid)
 {
     try
     {
         IChannelService channelservice = AuthenticatedRestFactory.GetChannelService();
         channelservice.DeleteMessage(chnid, msgid).Wait();
     }
     catch (Exception exception)
     {
         //App.NavigateToBugReport(exception);
     }
 }