Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

18 righe
443 B

  1. using System;
  2. using System.Threading.Tasks;
  3. namespace MQTTnet.Adapter
  4. {
  5. public class MqttServerAdapterClientAcceptedEventArgs : EventArgs
  6. {
  7. public MqttServerAdapterClientAcceptedEventArgs(IMqttChannelAdapter client)
  8. {
  9. Client = client ?? throw new ArgumentNullException(nameof(client));
  10. }
  11. public IMqttChannelAdapter Client { get; }
  12. public Task SessionTask { get; set; }
  13. }
  14. }