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.

MqttClientConnectedEventArgs.cs 341 B

пре 7 година
пре 7 година
пре 7 година
пре 7 година
пре 7 година
1234567891011121314
  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. }