Ejemplo n.º 1
0
 public byte[] getBrocastSmsMsg(String imei, String content)
 {
     byte[] command = { 0x26, 0x26, (byte)0x81 };
     return(Encoder.getBrocastSmsMsg(imei, content, command, encryptType, aesKey));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Get brocast sms msg byte [ ].
 /// </summary>
 /// <param name="imei">The imei</param>
 /// <param name="content">The brocast content</param>
 /// <returns>The brocast setting msg byte [ ].</returns>
 public static byte[] getBrocastSmsMsg(String imei, String content)
 {
     byte[] command = { 0x23, 0x23, (byte)0x81 };
     return(Encoder.getBrocastSmsMsg(imei, content, command, MessageEncryptType.NONE, null));
 }