WebApplication.Sessions
From Xojo Documentation
Method
Allows you to iterate through all the active sessions.
Sample Code
This example adds to a WebListBox the name of the current page for each active session:
For Each activeSession As WebSession In App.Sessions
ListBox1.AddRow(activeSession.CurrentPage.Name)
Next
ListBox1.AddRow(activeSession.CurrentPage.Name)
Next
See Also
WebSession class.