EDI Integrator 2016 .NET Edition
EDI Integrator 2016 .NET Edition
Questions / Feedback?

Connections Property

A map of connected clients.

Syntax

[VB.NET]
Public ReadOnlyProperty Connections As MLLPConnectionMap

[C#]
public MLLPConnectionMap Connections {get;}

Remarks

This property is a collection that maps connection Ids to MLLP client connections. MLLPConnection objects are added to and removed from the collection as necessary as MLLP clients connect to and disconnect from the component.

Sending to Multiple Connected Clients Example

foreach (MLLPConnection conn in mllpServer.Connections.Values) {
  conn.InputData = "HL7Data";
  mllpServer.Send(conn.ConnectionId);
}

This property is read-only.

Default Value

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
EDI Integrator 2016 .NET Edition - Version 16.0 [Build 7362]