ToString() public method

public ToString ( ) : string
return string
コード例 #1
0
ファイル: BluetoothWT32.cs プロジェクト: temur03/imBMW
 public void SendCommand(Message message, Link link, string description = null)
 {
     if (description == null)
     {
         description = message.ToString();
     }
     SendCommand(message.Packet, link, description);
 }
コード例 #2
0
 public static void SendMessage(Message m)
 {
     if (HasConnection)
     {
         try
         {
             client.SendCommand(m.Packet, client.SPPLink, m.ToString());
         }
         catch (Exception ex)
         {
             Logger.Error(ex, "Internal to WT32", "> BT");
         }
     }
 }