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 MQTTnet.Client;
- using MQTTnet.Protocol;
-
- namespace MQTTnet.Extensions.Rpc.Options.TopicGeneration
- {
- public class TopicGenerationContext
- {
- public string MethodName { get; set; }
-
- public MqttQualityOfServiceLevel QualityOfServiceLevel { get; set; }
-
- public IMqttClient MqttClient { get; set; }
-
- public IMqttRpcClientOptions Options { get; set; }
- }
- }
|