AxSms 7.3.0.101

dotnet add package AxSms --version 7.3.0.101
                    
NuGet\Install-Package AxSms -Version 7.3.0.101
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AxSms" Version="7.3.0.101" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AxSms" Version="7.3.0.101" />
                    
Directory.Packages.props
<PackageReference Include="AxSms" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AxSms --version 7.3.0.101
                    
#r "nuget: AxSms, 7.3.0.101"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AxSms@7.3.0.101
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AxSms&version=7.3.0.101
                    
Install as a Cake Addin
#tool nuget:?package=AxSms&version=7.3.0.101
                    
Install as a Cake Tool

Thank You for Choosing the Auron SMS Component!

The Auron SMS Component offers the following features:

  • Easy-to-use API
  • SMS messaging via GSM modem, SMPP, HTTPS Client and Server, Android device and dial-up
  • Build your own SMSC with the SMPP Server API
  • SMPP server and client APIs can be secured using TLS/SSL
  • Completely asynchronous SMPP client/server API for maximum performance
  • Full HTTPS client and HTTPS Server implementation
  • GSM support via Serial, TAPI, and direct TCP connections
  • Pager messaging via SNPP
  • Excellent logging and tracing options to support troubleshooting

How to Use

Find the API reference here: https://www.auronsoftware.com/knowledge-base/

Download the full package, which includes several working examples for C#, VB.NET, ASP.NET, C++, Powershell and more: https://www.auronsoftware.com/download/

Or check github for the source code to our examples: https://github.com/Auron-Software/AxSms-Examples

Example: Sending an SMS Using a GSM Modem (C#)

AxSms.Gsm objGsm     = new AxSms.Gsm();
AxSms.Message objSms = new AxSms.Message();

objGsm.LogFile = "Log.txt";
objGsm.Open("COM2"); // Use IP address or TAPI name for TCP or TAPI.

if (objGsm.LastError != 0)
{
    Console.WriteLine(
        "Error opening GSM: " +
        objGsm.GetErrorDescription(objGsm.LastError)
    );
    return;
}

objSms.ToAddress = "+31612345678";
objSms.Body      = "Hello, world!";

objGsm.SendSms(objSms);

if (objGsm.LastError != 0)
{
    Console.WriteLine(
        "Error sending SMS: " +
        objGsm.GetErrorDescription(objGsm.LastError)
    );
    return;
}

objGsm.Close();

Example: Version and licensing information (C#)

AxSms.Gsm objGsm = new AxSms.Gsm();

Console.WriteLine("Auron SMS Component Version" + objGsm.Version + 
  "; Build" + objGsm.Build + "; Module" + objGsm.Module);
Console.WriteLine("License Status:"  + objGsm.LicenseStatus);

Support

Any questions or need an extension of the trial period? Please send us an email at: support@auronsoftware.com

Pricing and purchasing

This product is a fully functional 30 day trail.

Find more information about pricing and how to purchase or our sales page: https://www.auronsoftware.com/pricing/

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
7.3.0.101 119 1/7/2026
7.2.2.101 319 1/15/2025
7.2.0.701 352 7/10/2024
7.2.0.302 286 6/5/2024
7.2.0.301 311 3/18/2024
7.1.0.401 453 4/27/2023
7.0.3.201 455 2/22/2023
7.0.2.1103 797 11/28/2022
7.0.2.804 620 10/19/2022
7.0.2.603 652 6/22/2022
7.0.1.301 706 3/23/2022
7.0.0.101 699 1/29/2022
6.6.0.101 853 1/21/2021
6.5.5.1201 709 12/16/2020
6.5.4.701 755 7/22/2020
6.5.4.601 719 6/16/2020
6.5.4.402 767 4/22/2020
6.5.4.301 758 3/20/2020
6.5.3.201 781 2/11/2020
6.5.2.101 811 1/10/2020
6.5.1.9021 1,287 2/22/2019
6.5.1.9014 1,295 1/16/2019
6.5.1.9012 1,307 1/14/2019
6.5.1.9011 1,257 1/13/2019