Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

MqttCommunicationTimedOutException.cs 311 B

6 lat temu
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. }