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

25 行
816 B

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