Interface ISmppHeader
- Namespace
- Inetlab.SMPP.Common
- Assembly
- cs.temp.dll.dll
public interface ISmppHeader
Properties
Command
Gets or sets type of message the SMPP PDU represents.
CommandSet Command { get; set; }
Property Value
Length
Gets the overall length in octets of the SMPP message. The SMPP message header (including the command_length field itself), the mandatory parameters and the optional parameters are all considered.
uint Length { get; set; }
Property Value
- UInt32
Sequence
Unique sequence number. A sequence number allows a response PDU to be correlated with a request PDU.
uint Sequence { get; set; }
Property Value
- UInt32
Status
Indicates the success or failure of an SMPP request.
CommandStatus Status { get; set; }