AberrantSMPP.Packet.Pdu.InsertLengthIntoPdu(System.Collections.ArrayList)

Here are the examples of the csharp api class AberrantSMPP.Packet.Pdu.InsertLengthIntoPdu(System.Collections.ArrayList) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: AberrantSMPP
Source File: Pdu.cs
protected byte[] EncodePduForTransmission(ArrayList pdu)
		{
			AddTlvBytes(ref pdu);
			pdu = InsertLengthIntoPdu(pdu);
			byte[] result = new byte[pdu.Count];
			pdu.CopyTo(result);

			return result;
		}