選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

17 行
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. }