Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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