在 WinDbg 中使用 .ForEach 时出错

发布于 2024-11-27 23:19:45 字数 374 浏览 0 评论 0原文

当我在 WinDbg 中调试转储文件时运行以下命令时,为什么会收到 无效参数 poi(adr+4)

.foreach ( adr { !dumpheap -mt 66df13d4 -short } ) { !do poi(adr+4); }

下面显示了 adr 的值正在正常填充。

.foreach ( adr { !dumpheap -mt 66df13d4 -short } ) { .echo adr; }

我想要获取存储在 System.Web.Caching.CacheEntry 对象的第四个偏移处的 .NET 字符串变量的内容。

Why am I getting a Invalid parameter poi(adr+4) when I run the following command in WinDbg while debugging a dump file?

.foreach ( adr { !dumpheap -mt 66df13d4 -short } ) { !do poi(adr+4); }

The following shows that the value of adr is getting populated just fine.

.foreach ( adr { !dumpheap -mt 66df13d4 -short } ) { .echo adr; }

I want to get the contents of a .NET string variable that is stored at the 4th offset of a System.Web.Caching.CacheEntry object.

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

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

发布评论

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

评论(1

微凉 2024-12-04 23:19:45

adr 周围需要有空格或使用 ${adr}。这记录在 MSDN

注意当字符串Variable出现在OutCommands中时,它必须是
被空间包围。如果它与任何其他文本相邻——即使是
括号——它不会被当前标记值替换,
除非您使用 ${ }(别名解释器) 令牌。


You need to have spaces around adr or use ${adr}. This is documented in MSDN

Note When the string Variable appears within OutCommands, it must be
surrounded by spaces. If it is adjacent to any other text -- even a
parenthesis -- it will not be replaced by the current token value,
unless you use the ${ } (Alias Interpreter) token.

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