Twilio.AspNet.Mvc
5.9.6
Previous versions contain bugs and vulnerabilities. See CHANGELOG.md for more details.
See the version list below for details.
dotnet add package Twilio.AspNet.Mvc --version 5.9.6
NuGet\Install-Package Twilio.AspNet.Mvc -Version 5.9.6
<PackageReference Include="Twilio.AspNet.Mvc" Version="5.9.6" />
paket add Twilio.AspNet.Mvc --version 5.9.6
#r "nuget: Twilio.AspNet.Mvc, 5.9.6"
// Install Twilio.AspNet.Mvc as a Cake Addin #addin nuget:?package=Twilio.AspNet.Mvc&version=5.9.6 // Install Twilio.AspNet.Mvc as a Cake Tool #tool nuget:?package=Twilio.AspNet.Mvc&version=5.9.6
Twilio.AspNet
ASP.NET tools for use with v5.x of the Twilio helper library for use with:
- ASP.NET MVC 3-5 on the .NET Framework
- ASP.NET Core 1-2 on .NET Core
You only need this library if you wish to respond to Twilio webhooks for voice calls and SMS messages. If you only need to use the Twilio REST API's, then you only need the Twilio helper library.
Twilio.AspNet.Mvc
Requirements
Requires .NET 4.5.1 or later with ASP.NET MVC 3-5.
Installation
Install-Package Twilio.AspNet.Mvc
Twilio.AspNet.Core
Requirements
Requires .NET Core 1.0 or later with ASP.NET Core 1.0 or later.
Installation
Install-Package Twilio.AspNet.Core
Code Samples for Either Library
Incoming SMS
using Twilio.AspNet.Common;
using Twilio.AspNet.Mvc; // or .Core
using Twilio.TwiML;
namespace WebApplication23.Controllers
{
public class SmsController : TwilioController
{
// GET: Sms
public TwiMLResult Index(SmsRequest request)
{
var response = new MessagingResponse();
response.Message(
$"Hey there {request.From}! " +
"How 'bout those Seahawks?"
);
return TwiML(response);
}
}
}
Incoming Voice Call
using Twilio.AspNet.Common;
using Twilio.AspNet.Mvc; // or .Core
using Twilio.TwiML;
namespace WebApplication23.Controllers
{
public class VoiceController : TwilioController
{
// GET: Voice
public TwiMLResult Index(VoiceRequest request)
{
var response = new VoiceResponse();
response.Say($"Welcome. Are you from {request.FromCity}?");
return TwiML(response);
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net451 is compatible. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Microsoft.AspNet.Mvc (>= 3.0.20105.1)
- Twilio (>= 5.8.2)
- Twilio.AspNet.Common (>= 5.8.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Twilio.AspNet.Mvc:
Repository | Stars |
---|---|
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
|
|
shr670377723/CommunityServer-master
|
Version | Downloads | Last updated | |
---|---|---|---|
8.0.2 | 71,822 | 5/11/2023 | |
8.0.1 | 1,331 | 5/2/2023 | |
8.0.1-rc | 707 | 4/21/2023 | |
8.0.0 | 14,973 | 3/2/2023 | |
7.0.0 | 22,884 | 11/18/2022 | |
7.0.0-rc | 727 | 11/17/2022 | |
6.0.0 | 52,170 | 8/5/2022 | |
6.0.0-alpha2 | 718 | 8/4/2022 | |
6.0.0-alpha | 719 | 7/20/2022 | |
5.77.0 | 9,817 | 7/19/2022 | |
5.73.0 | 97,967 | 4/5/2022 | |
5.71.0 | 20,686 | 2/24/2022 | |
5.68.3 | 106,891 | 11/24/2021 | |
5.37.2 | 208,394 | 11/6/2020 | |
5.33.1 | 424,296 | 10/16/2019 | |
5.20.1 | 604,047 | 10/26/2018 | |
5.9.7 | 239,899 | 3/2/2018 | |
5.9.6 | 8,906 | 2/12/2018 | |
5.8.3 | 66,507 | 11/9/2017 | |
5.8.1 | 12,435 | 10/31/2017 | |
5.0.2 | 75,559 | 6/7/2017 | |
5.0.1 | 55,351 | 2/22/2017 |
Broke out Twilio.AspNet.Common into separate package.