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

WebSocketEndpointModel.cs 414 B

123456789101112131415161718
  1. 
  2. using System.Collections.Generic;
  3. namespace MQTTnet.Server.Configuration
  4. {
  5. public class WebSocketEndPointModel
  6. {
  7. public bool Enabled { get; set; } = true;
  8. public string Path { get; set; } = "/mqtt";
  9. public int ReceiveBufferSize { get; set; } = 4096;
  10. public int KeepAliveInterval { get; set; } = 120;
  11. public List<string> AllowedOrigins { get; set; }
  12. }
  13. }