Riviera.Kavenegar
1.0.0-preview.5
dotnet add package Riviera.Kavenegar --version 1.0.0-preview.5
NuGet\Install-Package Riviera.Kavenegar -Version 1.0.0-preview.5
<PackageReference Include="Riviera.Kavenegar" Version="1.0.0-preview.5" />
<PackageVersion Include="Riviera.Kavenegar" Version="1.0.0-preview.5" />
<PackageReference Include="Riviera.Kavenegar" />
paket add Riviera.Kavenegar --version 1.0.0-preview.5
#r "nuget: Riviera.Kavenegar, 1.0.0-preview.5"
#:package Riviera.Kavenegar@1.0.0-preview.5
#addin nuget:?package=Riviera.Kavenegar&version=1.0.0-preview.5&prerelease
#tool nuget:?package=Riviera.Kavenegar&version=1.0.0-preview.5&prerelease
Riviera.Kavenegar
Unofficial implementation of the Kavenegar API for .NET
Installation
You can install this package via the Package Manager Console
in Visual Studio.
Install-Package Riviera.Kavenegar -PreRelease
Startup Configuration
To use the KavenegarService
you need to register it in your Startup.cs
class.
// using Riviera.Kavenegar;
services.AddHttpClient<KavenegarService>();
services.Configure<KavenegarOptions>(o => o.ApiKey = "your-api-key");
Note: Consider using user secrets to store the API key.
Controller Configuration
After registering the service, you need to add it to your controller.
// using Riviera.Kavenegar;
public class HomeController : Controller
{
private readonly KavenegarService _service;
public HomeController(KavenegarService service)
{
_service = service;
}
}
Sending a text message
You can send a text message via the SendMessageAsync
method.
[Route("send")]
public async Task<IActionResult> Send()
{
var result = await _service.SendMessageAsync("recipient number", "message", "sender number");
if (result.IsSuccess)
{
return Ok("Message has been successfully sent.");
}
// Show an error message
return Content($"Code: {result.Return.Status}\nMessage: {result.Return.Message}");
}
Checking the status
You can check the text message status via the GetStatusAsync
method.
[Route("status")]
public async Task<IActionResult> Status()
{
var result = await _service.GetStatusAsync(1234567);
if (result.IsSuccess)
{
return Ok(result.Entry.StatusText);
}
// Show an error message
return Content($"Code: {result.Return.Status}\nMessage: {result.Return.Message}");
}
License
This project is licensed under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Extensions.Options (>= 5.0.0)
- System.Text.Json (>= 8.0.5)
-
net6.0
- Microsoft.Extensions.Options (>= 6.0.0)
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 |
---|---|---|
1.0.0-preview.5 | 431 | 7/21/2025 |
1.0.0-preview.4 | 95 | 10/9/2024 |
1.0.0-preview.3 | 197 | 7/11/2024 |
1.0.0-preview.2 | 436 | 10/24/2021 |
1.0.0-preview.1 | 365 | 7/24/2021 |