Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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; }
- }
- }
|