ソースを参照

Extend invalid protocol exception message

release/3.x.x
Christian Kratky 7年前
コミット
86dddd81c7
1個のファイルの変更1行の追加2行の削除
  1. +1
    -2
      MQTTnet.Core/Serializer/DefaultMqttV311PacketSerializer.cs

+ 1
- 2
MQTTnet.Core/Serializer/DefaultMqttV311PacketSerializer.cs ファイルの表示

@@ -1,7 +1,6 @@
using System;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using MQTTnet.Core.Channel;
using MQTTnet.Core.Exceptions;
@@ -201,7 +200,7 @@ namespace MQTTnet.Core.Serializer

default:
{
throw new MqttProtocolViolationException("Packet type not supported.");
throw new MqttProtocolViolationException($"Packet type ({(int)mqttPacketReader.ControlPacketType}) not supported.");
}
}
}


読み込み中…
キャンセル
保存