您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

MqttClientDisconnectedEventArgs.cs 415 B

7 年前
7 年前
7 年前
7 年前
7 年前
1234567891011121314151617
  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. }