Example #1
0
 private static void Client_ConnectingFailed(object sender, MqttManagedProcessFailedEventArgs e)
 {
     Console.WriteLine(e.Exception);
 }
Example #2
0
 private void _client_OnConnectingFailed(object sender, MqttManagedProcessFailedEventArgs e)
 {
     IsConnectedToBroker = false;
     OnConnectionFailed(this, new ConnectionFailedEventArgs(ClientId));
 }