Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- using System;
-
- namespace MQTTnet.Server
- {
- public class MqttClientSubscribedTopicEventArgs : EventArgs
- {
- public MqttClientSubscribedTopicEventArgs(string clientId, TopicFilter topicFilter)
- {
- ClientId = clientId ?? throw new ArgumentNullException(nameof(clientId));
- TopicFilter = topicFilter ?? throw new ArgumentNullException(nameof(topicFilter));
- }
-
- public string ClientId { get; }
-
- public TopicFilter TopicFilter { get; }
- }
- }
|