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.

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