Sonoran.Net 0.1.26

dotnet add package Sonoran.Net --version 0.1.26
                    
NuGet\Install-Package Sonoran.Net -Version 0.1.26
                    
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="Sonoran.Net" Version="0.1.26" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sonoran.Net" Version="0.1.26" />
                    
Directory.Packages.props
<PackageReference Include="Sonoran.Net" />
                    
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 Sonoran.Net --version 0.1.26
                    
#r "nuget: Sonoran.Net, 0.1.26"
                    
#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 Sonoran.Net@0.1.26
                    
#: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=Sonoran.Net&version=0.1.26
                    
Install as a Cake Addin
#tool nuget:?package=Sonoran.Net&version=0.1.26
                    
Install as a Cake Tool

Sonoran.Net

Sonoran.Net is the C# package for Sonoran CAD integrations.

The package includes a .NET Framework 4.5.2 build for FiveM resources and a .NET 8 build for modern .NET applications.

Install

dotnet add package Sonoran.Net

Example Configuration

using Sonoran;

using var sonoran = new SonoranClient(new SonoranClientOptions
{
    product = SonoranProduct.CAD,
    apiKey = "your-cad-api-key",
    communityId = "your-community-id",
    apiUrl = "https://api.sonorancad.com",
    defaultServerId = 1,
    timeout = TimeSpan.FromSeconds(30)
});

Example Usage

var response = await sonoran.createEmergencyCallV2(new CreateEmergencyCallV2Request
{
    ServerId = 1,
    IsEmergency = true,
    Caller = "John Doe",
    Location = "101 Alta Street",
    Description = "Structure fire with visible smoke.",
    DeleteAfterMinutes = 30
});

The client automatically retries CAD v2 429 Too Many Requests responses up to 2 times and respects Retry-After when it is provided.

Repository

GitHub Repository

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 Framework net452 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
0.1.26 0 5/12/2026
0.1.25 0 5/11/2026
0.1.24 14 5/11/2026
0.1.23 30 5/11/2026
0.1.22 19 5/11/2026
0.1.21 29 5/11/2026
0.1.20 35 5/7/2026
0.1.19 41 5/7/2026
0.1.18 44 5/4/2026
0.1.17 79 5/4/2026
0.1.16 84 5/4/2026
0.1.15 86 5/1/2026
0.1.14 91 4/30/2026
0.1.13 88 4/29/2026
0.1.12 87 4/29/2026
0.1.11 93 4/29/2026
0.1.10 97 4/27/2026
0.1.9 94 4/21/2026
0.1.8 88 4/21/2026
0.1.7 100 4/15/2026
Loading failed