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

MqttSubscriptionInterceptorContext.cs 562 B

123456789101112131415161718192021
  1. using System;
  2. namespace MQTTnet.Server
  3. {
  4. public class MqttSubscriptionInterceptorContext
  5. {
  6. public MqttSubscriptionInterceptorContext(string clientId, TopicFilter topicFilter)
  7. {
  8. ClientId = clientId;
  9. TopicFilter = topicFilter ?? throw new ArgumentNullException(nameof(topicFilter));
  10. }
  11. public string ClientId { get; }
  12. public TopicFilter TopicFilter { get; }
  13. public bool AcceptSubscription { get; set; } = true;
  14. public bool CloseConnection { get; set; }
  15. }
  16. }