From ca7952ab33f2a3815b1fc5f36d05c75c40e0b20e Mon Sep 17 00:00:00 2001 From: Christian Kratky Date: Mon, 29 Oct 2018 20:35:22 +0100 Subject: [PATCH] Remove wrong setter. --- Build/MQTTnet.nuspec | 1 + Source/MQTTnet/Server/IMqttServerOptions.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Build/MQTTnet.nuspec b/Build/MQTTnet.nuspec index 6febc5c..da658a7 100644 --- a/Build/MQTTnet.nuspec +++ b/Build/MQTTnet.nuspec @@ -11,6 +11,7 @@ false MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker). * [Server] Added new method which exposes all retained messages. +* [Server] Removed (wrong) setter from the server options interface. Copyright Christian Kratky 2016-2018 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 diff --git a/Source/MQTTnet/Server/IMqttServerOptions.cs b/Source/MQTTnet/Server/IMqttServerOptions.cs index 2ae4c9f..f9334fd 100644 --- a/Source/MQTTnet/Server/IMqttServerOptions.cs +++ b/Source/MQTTnet/Server/IMqttServerOptions.cs @@ -14,7 +14,7 @@ namespace MQTTnet.Server Action ConnectionValidator { get; } Action SubscriptionInterceptor { get; } Action ApplicationMessageInterceptor { get; } - Action ClientMessageQueueInterceptor { get; set; } + Action ClientMessageQueueInterceptor { get; } MqttServerTcpEndpointOptions DefaultEndpointOptions { get; } MqttServerTlsTcpEndpointOptions TlsEndpointOptions { get; }