0

I implement the below code for send messages using Twilio but I'm not getting any error when messages fail to deliver due to internet issues.

Com.Twilio.Chat.Message.Options options = Com.Twilio.Chat.Message.InvokeOptions().WithAttributes(jSON);
TwillioChatHelper.Instance.listOfChannel[position].Messages.SendMessage(options, new ChatMessageCallbackListner());

internal class ChatMessageCallbackListner : CallbackListener<Message>
{
    public override void OnSuccess(Message result)
    {

    }
    public override void OnError(ErrorInfo errorInfo)
    {
       base.OnError(errorInfo);

    }
}
philnash
  • 70,667
  • 10
  • 60
  • 88
Adil Saiyad
  • 1,582
  • 2
  • 17
  • 34
  • I'm afraid I don't know about this. Can I recommend you open an issue on the [Xamarin bindings repo](https://github.com/twilio/TwilioChatXamarinBindings) where the team responsible keeps an eye on things? – philnash Jan 08 '20 at 23:48
  • okay, I will create new issue in your recommendation thanks. – Adil Saiyad Jan 09 '20 at 05:23

0 Answers0