25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

MqttProtocolViolationException.cs 245 B

7 yıl önce
7 yıl önce
7 yıl önce
123456789101112
  1. using System;
  2. namespace MQTTnet.Core.Exceptions
  3. {
  4. public sealed class MqttProtocolViolationException : Exception
  5. {
  6. public MqttProtocolViolationException(string message)
  7. : base(message)
  8. {
  9. }
  10. }
  11. }