mqttnet - MQTTnet 5.0.0.1123

MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker) and supports v3.1.0, v3.1.1 and v5.0.0 of the MQTT protocol.

PM> Install-Package MQTTnet -Version 5.0.0.1123 -Source https://www.myget.org/F/mqttnet/api/v3/index.json

Copy to clipboard

> nuget.exe install MQTTnet -Version 5.0.0.1123 -Source https://www.myget.org/F/mqttnet/api/v3/index.json

Copy to clipboard

> dotnet add package MQTTnet --version 5.0.0.1123 --source https://www.myget.org/F/mqttnet/api/v3/index.json

Copy to clipboard
<PackageReference Include="MQTTnet" Version="5.0.0.1123" />
Copy to clipboard
source https://www.myget.org/F/mqttnet/api/v3/index.json

nuget MQTTnet  ~> 5.0.0.1123
Copy to clipboard

> choco install MQTTnet --version 5.0.0.1123 --source https://www.myget.org/F/mqttnet/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "mqttnet" -SourceLocation "https://www.myget.org/F/mqttnet/api/v2"
Install-Module -Name "MQTTnet" -RequiredVersion "5.0.0.1123" -Repository "mqttnet" 
Copy to clipboard

Browse the sources in this package using Visual Studio or WinDbg by configuring the following symbol server URL: https://www.myget.org/F/mqttnet/api/v2/symbolpackage/



NuGet Badge CI MyGet Size Join the chat at https://gitter.im/MQTTnet/community License: MIT

MQTTnet

MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server ( broker) and supports the MQTT protocol up to version 5. It is compatible with mostly any supported .NET Framework version and CPU architecture.

Features

General

  • Async support
  • TLS support for client and server (but not UWP servers)
  • Extensible communication channels (e.g. In-Memory, TCP, TCP+TLS, WS)
  • Lightweight (only the low level implementation of MQTT, no overhead)
  • Performance optimized (processing ~150.000 messages / second)*
  • Uniform API across all supported versions of the MQTT protocol
  • Access to internal trace messages
  • Unit tested (~636 tests)
  • No external dependencies

* Tested on local machine (Intel i7 8700K) with MQTTnet client and server running in the same process using the TCP channel. The app for verification is part of this repository and stored in /Tests/MQTTnet.TestApp.NetCore.

Client

  • Communication via TCP (+TLS) or WS (WebSocket) supported
  • Included core LowLevelMqttClient with low level functionality
  • Also included ManagedMqttClient which maintains the connection and subscriptions automatically. Also application messages are queued and re-scheduled for higher QoS levels automatically.
  • Rx support (via another project)
  • Compatible with Microsoft Azure IoT Hub

Server (broker)

  • List of connected clients available
  • Supports connected clients with different protocol versions at the same time
  • Able to publish its own messages (no loopback client required)
  • Able to receive every message (no loopback client required)
  • Extensible client credential validation
  • Retained messages are supported including persisting via interface methods (own implementation required)
  • WebSockets supported (via ASP.NET Core 2.0, separate nuget)
  • A custom message interceptor can be added which allows transforming or extending every received application message
  • Validate subscriptions and deny subscribing of certain topics depending on requesting clients

Getting Started

MQTTnet is delivered via NuGet package manager. You can find the packages here: https://www.nuget.org/packages/MQTTnet/

Use these command in the Package Manager console to install MQTTnet manually:

Install-Package MQTTnet

Samples for using MQTTnet are part of this repository. For starters these samples are recommended:

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct.

.NET Foundation

This project is supported by the .NET Foundation.

  • .NETFramework 6.0
  • .NETFramework 7.0
  • .NETFramework 8.0
  • .NETFramework 6.0: 6.0.0.0
  • .NETFramework 7.0: 7.0.0.0
  • .NETFramework 8.0: 8.0.0.0

Signature validation information

Informational

Signature Hash Algorithm: SHA256

Timestamp: 5/17/2024 3:28:51 PM

Verifying author primary signature's timestamp with timestamping service certificate: 
  Subject Name: CN=Microsoft Public RSA Time Stamping Authority, OU=Thales TSS ESN:45D6-96C5-5E63, OU=Microsoft America Operations, O=Microsoft Corporation, L=Redmond, S=Washington, C=US
  SHA1 hash: A1A51A3D2E1349D918BB4BA96F34CF2B0EE70CD2
  SHA256 hash: 3403D75002D22E2B8C49A8A113957D9EB225C901B946837FD61FF3CE32C51F65
  Issued by: CN=Microsoft Public RSA Timestamping CA 2020, O=Microsoft Corporation, C=US
  Valid from: 2/15/2024 8:35:56 PM to 2/15/2025 8:35:56 PM

Signature type: Author

Verifying the author primary signature with certificate: 
  Subject Name: CN=MQTTNET (.NET Foundation), O=MQTTNET (.NET Foundation), L=Redmond, S=Washington, C=US, SERIALNUMBER=603 389 068, OID.2.5.4.15=Private Organization, OID.1.3.6.1.4.1.311.60.2.1.2=Washington, OID.1.3.6.1.4.1.311.60.2.1.3=US
  SHA1 hash: E68FF5B010660D69AD11970F2C7BF312E7C2D777
  SHA256 hash: 34BEAF4E9DB0297F6BDE1E6D92F7C8B666B41BE66B65432A5B8F7683E043102A
  Issued by: CN=.NET Foundation Projects Code Signing CA2, O=.NET Foundation, C=US
  Valid from: 5/15/2024 12:00:00 AM to 5/14/2027 11:59:59 PM

Owners

Christian

Authors

The contributors of MQTTnet

Project URL

https://github.com/dotnet/MQTTnet

License

Unknown

Tags

MQTT Message Queue Telemetry Transport MQTTClient MQTTServer Server MQTTBroker Broker NETStandard IoT InternetOfThings Messaging Hardware Arduino Sensor Actuator M2M ESP Smart Home Cities Automation Xamarin Blazor

Signature

Validation: Valid

Info

10 total downloads
0 downloads for version 5.0.0.1123
Download (319.41 KB)
Download symbols (133.91 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
5.0.0.1225-RC 120.22 KB Sat, 09 Nov 2024 10:43:25 GMT 0
5.0.0.1224-RC 120.95 KB Sat, 09 Nov 2024 10:14:49 GMT 0
5.0.0.1223-RC 121.5 KB Sun, 27 Oct 2024 17:56:07 GMT 0
5.0.0.1222-RC 120.71 KB Sun, 27 Oct 2024 14:26:03 GMT 0
5.0.0.1221-RC 120.46 KB Sat, 26 Oct 2024 09:43:20 GMT 0
5.0.0.1145 119.27 KB Mon, 20 May 2024 08:49:03 GMT 0
5.0.0.1144 218.94 KB Sun, 19 May 2024 18:43:13 GMT 0
5.0.0.1123 319.41 KB Fri, 17 May 2024 15:29:07 GMT 0
4.3.7.1208 1.59 MB Sat, 07 Sep 2024 10:09:24 GMT 0
4.3.7.1207 1.59 MB Sat, 07 Sep 2024 09:49:17 GMT 2
4.3.7.1197 1.58 MB Sat, 24 Aug 2024 13:12:53 GMT 0
4.3.7.1195 1.58 MB Sat, 24 Aug 2024 11:23:51 GMT 0
4.3.7.1194 1.58 MB Sat, 24 Aug 2024 10:43:55 GMT 0
4.3.6.1189 1.47 MB Sat, 24 Aug 2024 09:25:02 GMT 0
4.3.6.1186 1.47 MB Thu, 25 Jul 2024 20:02:48 GMT 1
4.3.6.1175 1.47 MB Sat, 22 Jun 2024 13:40:47 GMT 0
4.3.6.1174 1.47 MB Sat, 22 Jun 2024 13:08:37 GMT 0
4.3.6.1173 1.47 MB Sat, 22 Jun 2024 13:10:11 GMT 0
4.3.6.1171 1.47 MB Fri, 21 Jun 2024 17:20:33 GMT 0
4.3.6.1153 1.47 MB Fri, 24 May 2024 15:58:32 GMT 0
4.3.6.1152 1.47 MB Thu, 23 May 2024 17:48:09 GMT 6
4.3.6.1150 1.46 MB Wed, 22 May 2024 18:08:20 GMT 0
4.3.6.1149 1.46 MB Tue, 21 May 2024 20:52:05 GMT 1
4.3.5.1148 1.47 MB Tue, 21 May 2024 18:59:56 GMT 0
4.3.5.1146 1.46 MB Tue, 21 May 2024 18:08:29 GMT 0