如何检查 Cassini 会话中的数据?

发布于 2024-12-23 11:59:17 字数 459 浏览 0 评论 0原文

有没有一种简单的方法来检查卡西尼会话中存储的数据?我知道我可以使用监视条目,但我想知道是否有更好的工具。

例如,如果我想查看当前存储在 Session 中的所有 Key,我必须像这样向下挖掘: Session in Watch

然后,每次添加新值时, _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:
Session in Watch

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:
Session Key Value

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月下客 2024-12-30 11:59:17

只需放置断点或使用 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.

歌入人心 2024-12-30 11:59:17

一种可能的解决方案是使用持久会话提供程序(例如将会话保存到数据库的提供程序),然后使用您希望的任何工具检查存储的数据。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文