Purpose
Determines whether a user is currently logged in.
ServerDirectory.OpenDirectory, .WhosOnline, and .OpenPresence will provide data that .IsOnline can retrieve. ServerDirectory.OpenAdmin won't provide this data, because it isn't included in the administrator's Directory view.
Syntax
ServerDirectory.IsOnline
Example
Dim sd as ServerDirectory
sd.OpenAdmin ("John", fcListByName)
If sd.IsOnline Then Debug "The first John in the Directory is logged in"
|