HiveMQtt 0.11.4

This package has a SemVer 2.0.0 package version: 0.11.4+build.452.
dotnet add package HiveMQtt --version 0.11.4
NuGet\Install-Package HiveMQtt -Version 0.11.4
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="HiveMQtt" Version="0.11.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HiveMQtt --version 0.11.4
#r "nuget: HiveMQtt, 0.11.4"
#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.
// Install HiveMQtt as a Cake Addin
#addin nuget:?package=HiveMQtt&version=0.11.4

// Install HiveMQtt as a Cake Tool
#tool nuget:?package=HiveMQtt&version=0.11.4

alternate text is missing from this package README image alternate text is missing from this package README image

The Spectacular (BETA) C# MQTT Client for .NET

NuGet Version GitHub release (latest by date) GitHub Workflow Status Nuget GitHub

Static Badge Static Badge Static Badge

  • Easy-to-Install: Available as a Nuget package.
  • Compliant: Fully compliant with the MQTT 5.0 specification.
  • Works with Any MQTT 5.0 Broker: Built by HiveMQ but not only for HiveMQ.
  • Opensource: No blackbox code. Only trusted, tested and reviewed opensource code.
  • Easy to Use: Smart defaults, excellent interfaces and intelligent automation makes implementing a breeze.
  • Fast: Optimized & benchmarked. See the benchmark results here.
  • Actively Maintained: Built by the MQTT professionals that built HiveMQ (and do this for a living).
  • Extensively Documented: What good is it without excellent documentation?
  • Supported: Contact us anytime in this repository, in the community forum or through support.
  • Extensive Event System: Hook into all parts of the client down to the packet level with built in events.
  • Global and Per-Subscription Message Handling: Use multiple targeted handlers for more targeted and specialized message processing.
  • Full Last Will & Testament Support: Reliable message delivery and notification of client disconnections.
  • Observable: Configure up to TRACE level logging for package internals.
  • Secure Client Identification: Full support for X.509 client certificates and TLS connections.
  • Globally Compatible: Built to be a fully compliant MQTT 5.0 client compatible with all reputable MQTT brokers.

Do you have a success story with this client? Let us know. We'd love to feature your story in a blog post or video and you'll get some sweet HiveMQ swag (and publicity) along the way.

What is this?

MQTT is an open standard protocol for publishing and consuming messages from IoT devices all the way up to mainframes. It's binary, massively performant and easy to use.

This client library is used to publish and consume messages over MQTT. So you can get a the temperature from a remote sensor, send a control message to a factory robot, tunnel WhatsApp messages to a Twitter account or anything else you can imagine.

This is the client library that speaks with an MQTT broker that delivers messages to their final destination.

Need a broker? Sign up for a free broker at HiveMQ Cloud and be up and running in a couple minutes. Connect up to 100 devices - no credit card required.

MQTT Resources

Need an MQTT Broker?

This client communicates with an MQTT broker to publish and consume messages. It's built to be compatible with all major MQTT brokers but if you need a broker now run the HiveMQ Community Edition:

docker run --name hivemq-ce -d -p 1883:1883 hivemq/hivemq-ce

This will run the HiveMQ Community Edition broker on localhost port 1883.

If you need advanced features, checkout our premium editions or alternatively HiveMQ Cloud which is free to connect up to 100 devices (no credit card required).

Install

This package is available on NuGet.org and can be installed with:

dotnet add package HiveMQtt

See the HiveMQtt NuGet page for more installation options.

Example

The following illustrates the client pattern to connect, subscribe and publish messages.

using HiveMQtt.Client;
using HiveMQtt.MQTT5.Types;

// Setup Client options and instantiate
var options = new HiveMQClientOptionsBuilder().
                    WithBroker("candy.x39.eu.hivemq.cloud").
                    WithPort(8883).
                    WithUseTls(true).
                    Build();
var client = new HiveMQClient(options);

// Setup an application message handlers BEFORE subscribing to a topic
client.OnMessageReceived += (sender, args) =>
{
    Console.WriteLine("Message Received: {}", args.PublishMessage.PayloadAsString);
};

// Connect to the MQTT broker
var connectResult = await client.ConnectAsync().ConfigureAwait(false);

// Configure the subscriptions we want and subscribe
var builder = new SubscribeOptionsBuilder();
builder.WithSubscription("topic1", QualityOfService.AtLeastOnceDelivery)
       .WithSubscription("topic2", QualityOfService.ExactlyOnceDelivery);
var subscribeOptions = builder.Build();
var subscribeResult = await client.SubscribeAsync(subscribeOptions);

// Publish a message
var publishResult = await client.PublishAsync("topic1/example", "Hello Payload");

For a Quickstart, more examples and walkthroughs, see the documentation.

Other MQTT Clients

For a list of all known MQTT clients, see MQTT.org.

🛡 License

License

This project is licensed under the terms of the Apache Software License 2.0 license. See LICENSE for more details.

📃 Citation

@misc{hivemq-mqtt-client-dotnet,
  author = {HiveMQ GmbH},
  title = {The HiveMQ C# MQTT client for .NET},
  year = {2024},
  publisher = {GitHub},
  journal = {GitHub repository},
  howpublished = {\url{https://github.com/hivemq/hivemq-mqtt-client-dotnet}}
}
Product Compatible and additional computed target framework versions.
.NET 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. 
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.11.4 202 4/16/2024
0.11.3 272 4/5/2024
0.11.2 90 4/3/2024
0.11.1 781 3/26/2024
0.11.0 407 3/21/2024
0.11.0-rc2 55 3/19/2024
0.10.3 728 2/23/2024
0.10.2 626 2/2/2024
0.10.1 189 1/23/2024
0.10.0 45 1/23/2024
0.9.0 350 1/15/2024
0.8.0 173 1/9/2024
0.7.0 191 12/28/2023
0.6.0 3,219 11/10/2023
0.5.0 648 10/30/2023
0.4.3 291 10/9/2023
0.4.1 169 9/28/2023
0.4.0 82 9/26/2023
0.3.0 4,371 9/7/2023
0.2.1 1,954 8/21/2023
0.2.0 1,641 6/13/2023
0.1.10 522 4/18/2023
0.1.9 137 4/12/2023
0.1.9-preview.0.2 75 4/11/2023
0.1.6 275 3/24/2023
0.1.5 180 3/24/2023
0.1.4 175 3/24/2023
0.1.3 233 2/22/2023
0.1.2 210 2/21/2023
0.1.1 250 2/21/2023

The HiveMQtt release details are maintained in Github:
     https://github.com/hivemq/hivemq-mqtt-client-dotnet/releases