UserControl
UserControl

Reputation: 15149

How to specify outgoing http call timeout in Twilio

I'm using TwilioRestClient from .NET Twilio.API 3.4.1.0. I need to specify timeout when calling to SendSmsMessage() but it looks like there is no suitable overload. How can I do that?

Upvotes: 0

Views: 300

Answers (1)

Devin Rader
Devin Rader

Reputation: 10366

Twilio evangelist here.

Just to be clear, you want to specify the HTTP timeout? I don't think you can do this via the library so it its something you absolutely need, you will probably have to just make the API request via RestSharp or HttpWebRequest (or HttpClient of you are using .NET 4 or newer).

Can I ask why you need to set the timeout?

Hope that helps.

Upvotes: 1

Related Questions