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;
- using MQTTnet.Core.Adapter;
- using MQTTnet.Core.Server;
-
- namespace MQTTnet.Core.Tests
- {
- public class TestMqttServerAdapter : IMqttServerAdapter
- {
- public event EventHandler<MqttClientConnectedEventArgs> ClientConnected;
-
- public void FireClientConnectedEvent(MqttClientConnectedEventArgs eventArgs)
- {
- ClientConnected?.Invoke(this, eventArgs);
- }
-
- public void Start(MqttServerOptions options)
- {
- }
-
- public void Stop()
- {
- }
- }
- }
|