Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

19 righe
632 B

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