Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

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