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.

MqttCommunicationTimedOutException.cs 311 B

7 yıl önce
7 yıl önce
6 yıl önce
7 yıl önce
1234567891011
  1. using System;
  2. namespace MQTTnet.Exceptions
  3. {
  4. public sealed class MqttCommunicationTimedOutException : MqttCommunicationException
  5. {
  6. public MqttCommunicationTimedOutException() { }
  7. public MqttCommunicationTimedOutException(Exception innerException) : base(innerException) { }
  8. }
  9. }