Example #1
0
 /// <summary>
 /// Decodes an outgoing SMS PDU stream.
 /// </summary>
 /// <param name="pdu">The PDU string to decode.</param>
 /// <param name="includesSmscData">Specify true if the PDU data contains an SMSC header, otherwise false.</param>
 /// <returns>An <see cref="T:GsmComm.PduConverter.OutgoingSmsPdu" /> object representing the decoded message.</returns>
 /// <remarks>Use this method when the actual length of the message is not known.</remarks>
 public static OutgoingSmsPdu Decode(string pdu, bool includesSmscData)
 {
     return(OutgoingSmsPdu.Decode(pdu, includesSmscData, -1));
 }