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

24 řádky
861 B

  1. using System;
  2. namespace MQTTnet.Server
  3. {
  4. public class MqttServerOptions : IMqttServerOptions
  5. {
  6. public MqttServerDefaultEndpointOptions DefaultEndpointOptions { get; } = new MqttServerDefaultEndpointOptions();
  7. public MqttServerTlsEndpointOptions TlsEndpointOptions { get; } = new MqttServerTlsEndpointOptions();
  8. public int ConnectionBacklog { get; set; } = 10;
  9. public TimeSpan DefaultCommunicationTimeout { get; set; } = TimeSpan.FromSeconds(15);
  10. public Action<MqttConnectionValidatorContext> ConnectionValidator { get; set; }
  11. public Action<MqttApplicationMessageInterceptorContext> ApplicationMessageInterceptor { get; set; }
  12. public Action<MqttSubscriptionInterceptorContext> SubscriptionInterceptor { get; set; }
  13. public IMqttServerStorage Storage { get; set; }
  14. }
  15. }