MQTTnet.Extensions.ManagedClient.Routing 1.1.0

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

NuGet Badge License: MIT

MQTTnet AspNetCore Routing

MQTTnet Extension ManagedClient Routing is a fork of https://github.com/IoTSharp/MQTTnet.AspNetCore.Routing

This addon to MQTTnet provides the ability to define controllers and use attribute-based routing against message topics in a manner that is very similar to AspNet Core.

Overview

MQTTnet.Extensions.ManagedClient.Routing extends MQTTnet's ManagedMqttClient with controller based routing. Use it when you want to organize MQTT handlers using MVC style controllers and attribute routes.

Installation

dotnet add package MQTTnet.Extensions.ManagedClient.Routing

Usage

Register your MQTT controllers in the DI container and enable routing:

builder.Services.AddMqttControllers();

app.UseAttributeRouting(); // or managedClient.WithAttributeRouting(app.Services);

To execute code before and after each controller action you can register an IRouteInvocationInterceptor. Implement the interface and hook it up when adding the controllers:

builder.Services.AddMqttControllers(opt =>
    opt.WithRouteInvocationInterceptor<MyInterceptor>());

RouteExecuting is called before the handler runs and RouteExecuted afterwards. See the architecture overview for details.

Example controller

public class TelemetryController : MqttBaseController
{
    [MqttRoute("telemetry/temperature")]
    public Task OnTemperature(string payload)
    {
        Console.WriteLine($"Temp: {payload}");
        return Ok();
    }
}

MIT License

This project is released under the MIT License.

Contributing

See CONTRIBUTING.md for guidelines on how to open issues, submit pull requests and run the test suite.

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 is compatible.  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. 
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
1.1.0 541 7/22/2025

Upgraded MQTTnet to v5 and added improved routing tests and documentation.