如何检查 Cassini 会话中的数据?
有没有一种简单的方法来检查卡西尼会话中存储的数据?我知道我可以使用监视条目,但我想知道是否有更好的工具。
例如,如果我想查看当前存储在 Session 中的所有 Key,我必须像这样向下挖掘:
然后,每次添加新值时, _entriesTable 属性都会折叠,我必须再次展开它才能看到新的价值观。
此外,如果我想查看会话中实际存储这些值的内容,我必须复制每个键并为其添加一个新的监视,Session["72ddf034-71e6-4a28-9aa1-f8d83245a6fe"].如果我在条目表中一直向下钻取,它会显示键和值的类型,但我无法向下钻取此处的值的属性:
Is there an easy way to inspect the data stored in my Cassini session? I know I can use watch entries, but I wanted to know if there was a better tool.
For example, if I want to see all Keys currently stored in Session, I have to dig down like this:
Then, each time a new value is added, the _entriesTable property collapses and I have to expand it again to see the new values.
Furthermore, if I want to see what is actually stored in session for those values, I have to copy each key and add a new watch for it, Session["72ddf034-71e6-4a28-9aa1-f8d83245a6fe"]
. If I drill all the way down in the entries table, it shows me the Key and the type of the Value, but I can't drill down into properties of the value here:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需放置断点或使用 Visual Studio 中的立即窗口即可输出
Session
的内容。卡西尼号在这里没有什么区别。Just put break points or use the Immediate Window in Visual Studio to output the contents of
Session
. Cassini makes no difference here.一种可能的解决方案是使用持久会话提供程序(例如将会话保存到数据库的提供程序),然后使用您希望的任何工具检查存储的数据。
One of possible solutions would be to use a persistent session provider (like the one which saves the session to your database) and then inspect the stored data with any tools you wish.