Table of Contents

Class MessageEventHandlerArgs

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

Arguments for message event handler in MessageComposer.

public class MessageEventHandlerArgs
Inheritance
MessageEventHandlerArgs
Inherited Members

Constructors

MessageEventHandlerArgs(string, SmppRequest[])

public MessageEventHandlerArgs(string text, SmppRequest[] parts)

Parameters

text string
parts SmppRequest[]

Properties

Parts

Gets parts from which that full text consist of.

public SmppRequest[] Parts { get; }

Property Value

SmppRequest[]

The parts.

Text

Gets full text

public string Text { get; }

Property Value

string

The text.

Methods

GetFirst<TPDU>()

Gets first not null part

public TPDU GetFirst<TPDU>() where TPDU : SmppRequest, IConcatenation

Returns

TPDU

The first.

Type Parameters

TPDU

Type of the SMPP PDU.