MqttServerTcpEndpointOptions.cs 246 B

1234567891011
  1. namespace MQTTnet.Server
  2. {
  3. public class MqttServerTcpEndpointOptions : MqttServerTcpEndpointBaseOptions
  4. {
  5. public MqttServerTcpEndpointOptions()
  6. {
  7. IsEnabled = true;
  8. Port = 1883;
  9. }
  10. }
  11. }