Table of Contents

Class ComposerItem

Namespace
Inetlab.SMPP.Common
Assembly
Inetlab.SMPP.dll

Represents an item for MessageComposer that collects received parts of the concatenation message.

[Serializable]
public class ComposerItem
Inheritance
ComposerItem
Inherited Members

Constructors

ComposerItem()

public ComposerItem()

Properties

Key

public string Key { get; set; }

Property Value

string

Parts

public SmppRequest[] Parts { get; }

Property Value

SmppRequest[]

Methods

GetFullMessage()

Gets full text for concatenated message.

public string GetFullMessage()

Returns

string

The full message.

HasAllParts()

Check if concatenated message has all parts.

public bool HasAllParts()

Returns

bool

True if all parts, false if not.

PutPart<TPDU>(TPDU)

public void PutPart<TPDU>(TPDU message) where TPDU : SmppRequest, IConcatenation

Parameters

message TPDU

Type Parameters

TPDU