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.
 
 
 
 

18 satır
415 B

  1. using System;
  2. namespace MQTTnet.Client
  3. {
  4. public class MqttClientDisconnectedEventArgs : EventArgs
  5. {
  6. public MqttClientDisconnectedEventArgs(bool clientWasConnected, Exception exception)
  7. {
  8. ClientWasConnected = clientWasConnected;
  9. Exception = exception;
  10. }
  11. public bool ClientWasConnected { get; }
  12. public Exception Exception { get; }
  13. }
  14. }