Retrieving a List of Connected Users (GetConnectedUsers)

Use the ICISite interface GetConnectedUsers method to retrieve the a list of users currently connected to a site.

This method is available in EFT Server 4.3.4 and later.

Signature:

HRESULT GetConnectedUsers([out, retval] VARIANT *user);

Example:

dim arConnectedUsers: oSite.GetConnectedUsers()

For iCount = LBound(arConnectedUsers) To UBound(arConnectedUsers)

WScript.Echo arConnectedUsers(iCount)

Next