Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Programmable Voice Quickstart for C# / .NET


With just a few lines of code, your .NET application can make and receive phone calls with Twilio Programmable Voice.

This quickstart teaches you how to do this using Twilio's REST API, the Twilio C# / .NET Helper Library(link takes you to an external page), and the ASP.NET(link takes you to an external page) framework to ease development.

In this quickstart, you will learn how to:

  1. Buy a voice-enabled Twilio phone number
  2. Set up your development environment
  3. Make an outbound phone call that plays an MP3
  4. Receive and respond to an inbound phone call that reads a message to the caller using Text-to-Speech

Prefer to get started by watching a video? Check out our video on how to place and receive phone calls with C# on Youtube(link takes you to an external page).


Before you begin

before-you-begin page anchor

If you don't already have a Twilio Account, create one by filling out the form on the Try Twilio page(link takes you to an external page).


1. Buy a Twilio Voice phone number

1-buy-a-twilio-voice-phone-number page anchor

If you already have a Voice-enabled phone number, skip to the Set up your development environment section.

(warning)

Warning

If you are sending SMS to the U.S. or Canada, please be aware of updated restrictions on the use of Toll-Free numbers for messaging purposes. These restrictions do not apply to Voice, or to other non-SMS uses of Twilio phone numbers. But if you obtain a Toll-Free Number for non-SMS purposes and then wish to use it as well for Messaging, please read this first(link takes you to an external page).

Follow the steps below to purchase a Twilio Phone Number with Voice capabilities.

  1. Log in to your Twilio Console(link takes you to an external page) .
  2. Navigate to the Buy a Number Console page: Search for "Buy a number" in the search bar at the top of your Console, or in the navigation sidebar, click on Phone Numbers > Manage > Buy a number .
  3. Under Capabilities , make sure that the Voice checkbox is checked.
  4. Under Search criteria , enter any criteria you want in your phone number and click the Search button.
  5. Choose a number from the list and click its associated Buy button.
Console Screenshot - Buy a Phone Number page.

_10
dotnet --version

If you have .NET installed, you should see something like the following:


_10
$ dotnet --version
_10
2.1.4

If you don't have .NET Core already installed and will not be using Visual Studio, you can download .NET Core from Microsoft(link takes you to an external page).

(information)

Info

The Twilio .NET Package supports the .NET Framework 3.5 and above as well as any framework that supports .NET Standard 1.4(link takes you to an external page).

2.2 - Install the Twilio .NET Package

22---install-the-twilio-net-package page anchor

The easiest way to install the library is using NuGet.

Visual Studio

visual-studio page anchor

If you are using Visual Studio, select the File menu and choose New > Project > Console App (either .NET Core or .NET Framework will work).

Visual Studio New Console App.dotnet command line tool, run these commands to create a new .NET project:


_10
mkdir twilio-test
_10
cd twilio-test
_10
dotnet new console
_10
dotnet add package Twilio


3. Make an outgoing phone call with C#

3-make-an-outgoing-phone-call-with-c page anchor

Now that you have .NET and the Twilio .NET library installed, you need to add code to your project that makes an API request to Twilio.

Open the Program.cs file in your new project and replace the existing code with the following code sample:

Make an outgoing call using Twilio and C#

make-an-outgoing-call-using-twilio-and-c page anchor

_26
// Download the twilio-csharp library from twilio.com/docs/libraries/csharp
_26
using System;
_26
using Twilio;
_26
using Twilio.Rest.Api.V2010.Account;
_26
using Twilio.Types;
_26
_26
namespace YourNewConsoleApp
_26
{
_26
class Program
_26
{
_26
static void Main(string[] args)
_26
{
_26
// To set up environmental variables, see http://twil.io/secure
_26
const string accountSid = Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID");
_26
const string authToken = Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN");
_26
TwilioClient.Init(accountSid, authToken);
_26
_26
var to = new PhoneNumber("+14155551212");
_26
var from = new PhoneNumber("+15017122661");
_26
var call = CallResource.Create(to, from,
_26
url: new Uri("http://demo.twilio.com/docs/voice.xml"));
_26
_26
Console.WriteLine(call.Sid);
_26
}
_26
}
_26
}

This code starts a phone call between the two phone numbers that we pass as arguments. The 'from' number is our Twilio number, and the 'to' number is who we want to call.

The 'url' argument points to some TwiML (Twilio Markup Language), which tells Twilio what to do next when our recipient answers their phone. This TwiML tells Twilio to read a message using text to speech and then play an MP3.

Before this code will work, though, we need to edit it a little to work with your Twilio account.

Replace the placeholder credential values

replace-the-placeholder-credential-values page anchor

Swap the placeholder values for accountSid and authToken with your personal Twilio credentials. Go to https://www.twilio.com/console(link takes you to an external page) and log in. On this page, you'll find your unique Account SID and Auth Token, which you'll need any time you send messages through the Twilio client like this. You can reveal your auth token by clicking on the eyeball icon:

Edit Program.cs and replace the values for accountSid and authToken with your unique values.

(error)

Danger

Please note: it's okay to hardcode your credentials when getting started, but you should use configuration to keep them secret before deploying to production. ASP.NET applications should use the built-in configuration system for ASP.NET on the .NET Framework(link takes you to an external page) or ASP.NET Core(link takes you to an external page). Other types of .NET applications could use environment variables(link takes you to an external page).

Replace the to and from phone numbers

replace-the-to-and-from-phone-numbers page anchor

Remember that voice-enabled phone number you bought just a few minutes ago? Go ahead and replace the existing from number with that one, making sure to use E.164 formatting:

[+][country code][phone number including area code]

Next, replace the to phone number with your mobile phone number. This can be any phone number that can receive calls, but it's a good idea to test with your phone so that you can see the magic happen! As above, you should use E.164 formatting for this value.

Save your changes and run this code either in Visual Studio or from your terminal:


_10
dotnet run

That's it! Your phone should ring with a call from your Twilio number, and you'll hear our short message for you. 😉

(warning)

Warning

If you're using a Twilio trial account, outgoing phone calls are limited to phone numbers you have verified with Twilio. Phone numbers can be verified via your Twilio Console's Verified Caller IDs(link takes you to an external page). For other trial account restrictions and limitations, check out our guide on how to work with your free Twilio trial account.


Set up ASP.NET MVC to receive calls

set-up-aspnet-mvc-to-receive-calls page anchor

When your Twilio number receives an incoming call, Twilio will send an HTTP request to a server you control. This callback mechanism is known as awebhook. When Twilio sends your application a request, it expects a response in theTwiML XML format telling it how to respond to the message. Let's see how we would build this in C# using ASP.NET MVC for .NET Framework 4.6.1. If you prefer using ASP.NET Core,check out this article. If you need to use ASP.NET Web API,we have an article for that, as well.

Create a New ASP.NET MVC Project in Visual Studio

create-a-new-aspnet-mvc-project-in-visual-studio page anchor

In Visual Studio, select the "File" menu and choose "New" then "Project..." and select "ASP.NET Web Application (.NET Framework)."

Visual Studio New ASP.NET Web Application (.NET Framework).Rate this page:

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.