Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

18 rindas
548 B

  1. using System;
  2. namespace MQTTnet.Core.Adapter
  3. {
  4. public class MqttClientConnectedEventArgs : EventArgs
  5. {
  6. public MqttClientConnectedEventArgs(string identifier, IMqttCommunicationAdapter clientAdapter)
  7. {
  8. Identifier = identifier ?? throw new ArgumentNullException(nameof(identifier));
  9. ClientAdapter = clientAdapter ?? throw new ArgumentNullException(nameof(clientAdapter));
  10. }
  11. public string Identifier { get; }
  12. public IMqttCommunicationAdapter ClientAdapter { get; }
  13. }
  14. }