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ů.
 
 
 
 

17 řádky
401 B

  1. using MQTTnet.Client;
  2. using MQTTnet.Protocol;
  3. namespace MQTTnet.Extensions.Rpc.Options.TopicGeneration
  4. {
  5. public class TopicGenerationContext
  6. {
  7. public string MethodName { get; set; }
  8. public MqttQualityOfServiceLevel QualityOfServiceLevel { get; set; }
  9. public IMqttClient MqttClient { get; set; }
  10. public IMqttRpcClientOptions Options { get; set; }
  11. }
  12. }