Example #1
0
 public static void Send(MqttClientConnection clientConnection, byte[] msgBytes)
 {
     try
     {
         MqttAsyncTcpSender.Send(clientConnection.ReceiveSocketAsyncEventArgs.AcceptSocket, msgBytes);
     }
     catch (Exception)
     {
     }
 }