Connections Property

A map of connected clients.

Syntax

public MLLPConnectionMap Connections { get; }
Public ReadOnly Property Connections As MLLPConnectionMap

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.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks EDI 2020 .NET Edition - Version 20.0 [Build 8203]