Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System;
- using System.Threading.Tasks;
-
- namespace MQTTnet.Adapter
- {
- public class MqttServerAdapterClientAcceptedEventArgs : EventArgs
- {
- public MqttServerAdapterClientAcceptedEventArgs(IMqttChannelAdapter client)
- {
- Client = client ?? throw new ArgumentNullException(nameof(client));
- }
-
- public IMqttChannelAdapter Client { get; }
-
- public Task SessionTask { get; set; }
- }
- }
|