Is there any utility that would let me examine the contents of Session objects for my website running on IIS 7/Framework 3.5 on my dev box? I've this huge code-base that stores lots of data in session state (in-proc) and I'm trying to find out what exactly is being stored. Of course I can find out the type of data by searching through the code but I was wondering if there is an external utility to do so. :)
I also looked at looping through Session.Contents
but that gives only the current session's data while I want to examine all existing sessions.
Thanks!