No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
-
- using System.Collections.Generic;
-
- namespace MQTTnet.Server.Configuration
- {
- public class WebSocketEndPointModel
- {
- public bool Enabled { get; set; } = true;
-
- public string Path { get; set; } = "/mqtt";
-
- public int ReceiveBufferSize { get; set; } = 4096;
-
- public int KeepAliveInterval { get; set; } = 120;
-
- public List<string> AllowedOrigins { get; set; }
- }
- }
|