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.
 
 
 
 

15 rivejä
341 B

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