camelCase
camelCase

Reputation: 1780

Which Twilio .Net helper library for new project

As a Twilio newbee coding in C# I am confused by the range of .Net helper libraries authored by Twilio Inc, my confusion is further compounded by online tutorials that show different helper API usage to solve a common problem.

My hunch is that after an extended Release Candidate phase the Twilio-csharp package on Nuget dated 14th February 2017 and described as 5.0.0-rca4, is the version to base my new development on. I think this corresponds to the twilio-csharp Next-Gen-2 branch on GitHub.

My development requirement is modest:

  1. Raise an outbound voice call in an Azure Function().
  2. Capture the call connect event in an Azure WebApi controller and reply with a say & gather XML instruction.
  3. Log the DTFM digits entered in a database hosted on azure via another WebApi entry point.

Upvotes: 0

Views: 207

Answers (1)

Devin Rader
Devin Rader

Reputation: 10366

Twilio evangelist here.

My suggestion is to use the (now GA'ed) version 5 package as it contains API changes compared to the older packages and also introduces .NET Standard 1.4 compatibility.

Hope that helps.

Upvotes: 1

Related Questions