finding session properties in the debugger

HI,

Im debugging a web app and when i set a breakpoint, how do i find the properties of the session?

i’m sure i must be missing something really obvious, but i cant find them

Just create a temporary variable wrapped in #if debugbuild.

#if debugbuild then Dim CurrentSession as Session = Session() #endif

The reason for the pragma is that the call can be very expensive when there are lots of sessions running. This way it’ll only affect performance when you’re debugging.

Isn’t there a feature request to have all sessions listed in debugger?
For debugging, you normally have only one or two sessions, so listing them in debugger like you do with modules, windows and threads should not be that difficult.

case 13181 and 22661.
Same for webpages. (case 32976)