Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
-
- 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; }
- }
- }
|