IP*Works! 2016 .NET Edition
IP*Works! 2016 .NET Edition
Questions / Feedback?

Connections Property

A collection of currently connected clients.

Syntax

[VB.NET]
Public ReadOnlyProperty Connections As ConnectionMap

[C#]
public ConnectionMap Connections {get;}

Remarks

This property contains a collection of currently connected clients. All of the connections may be managed using this property. Each connection is described by the different fields of the Connection type.

This collection is a hashtable type of collection, in which the Connection ID string is used as the key to the desired connection. You may acquire the key for a given connection through the Connected event.

Example (Broadcasting Data)

foreach (Connection c in ipdaemon1.Connections.Values) {
  c.DataToSend = "Broadcast Data";
}

This property is read-only.

Default Value

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 .NET Edition - Version 16.0 [Build 7353]