Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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; }
- }
- }
|