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.
 
 
 
 

16 wiersze
388 B

  1. using MQTTnet.Core.Server;
  2. using System;
  3. namespace MQTTnet.Core.Adapter
  4. {
  5. public class MqttClientDisconnectedEventArgs : EventArgs
  6. {
  7. public MqttClientDisconnectedEventArgs(ConnectedMqttClient client)
  8. {
  9. Client = client ?? throw new ArgumentNullException(nameof(client));
  10. }
  11. public ConnectedMqttClient Client { get; }
  12. }
  13. }