You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MqttClientDisconnectedEventArgs.cs 360 B

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