您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
629 B

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