Chameleon and Iguana Plugin C# Class Libraries

LlpServer.MessageReceivedEvent Delegate

Fired each time we receive a message from a connected HL7 client.

[Visual Basic]
Public Delegate Sub LlpServer.MessageReceivedEvent( _
   ByVal sender As Object, _
   ByVal Args As EventArgs, _
   ByVal Client As LlpConnection, _
   ByVal Message As String _
)
[C#]
public delegate void LlpServer.MessageReceivedEvent(
   object sender,
   EventArgs Args,
   LlpConnection Client,
   string Message
);

Parameters

sender
The object that triggered the event.
Args
Arguments to the event.
Client
The client that has sent the message.
Message
The HL7 message (in string format) that has been sent.

Remarks

Typically, the message should be processed and only then should an HL7 ACKnowledgement message be sent.

Received without any Trailer or Header characters.

Requirements

Namespace: iNTERFACEWARE.Chameleon

Assembly: CHM_CSHARP (in CHM_CSHARP.dll)

See Also

iNTERFACEWARE.Chameleon Namespace